-
|
Hi, I'm trying to read it using If I run simply Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
|
@johnkerl do you know what's wrong? Thank you very much |
Beta Was this translation helpful? Give feedback.
-
|
@aborruso what Miller does with This makes In fact this is an important distinction to preserve since What we need is a |
Beta Was this translation helpful? Give feedback.
@aborruso what Miller does with
mlr --prepipe somecommand file.datis topopenfrom the processsomecommand < file.dat-- note the<. And it turns outunzip -qc piemonte.zipworks whileunzip -qc < piemonte.zipdoes not.This makes
unzip -qcdifferent from most other commands likegunzipwhich are happy with<.In fact this is an important distinction to preserve since
gunzip foo.gzisn't the same asgunzip < foo.gz-- the latter leavesfoo.gz in place; the former removes it and replaces it with the decompressedfoo`.What we need is a
--prepipe-no-less-thanor something.