This repository has been archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
--dry-run isn't what gets executed #57
Milestone
Comments
@mqudsi have you tried running this without double quotes around |
mqudsi@ZBook /m/c/U/M/Downloads> echo ./zoomed\ in.png | parallel --dry-run 'file -ib {}'
parallel: reading inputs from standard input
file -ib ./zoomed in.png
mqudsi@ZBook /m/c/U/M/Downloads> echo ./zoomed\ in.png | parallel 'file -ib {}'
parallel: reading inputs from standard input
cannot open `./zoomed' (No such file or directory)
cannot open `in.png' (No such file or directory) |
@ghuls
I can't test this now, but it might be related to the current working directory being changed by parallel. The input is definitely not parsed as |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Any idea why parallel isn't working here? The output of
--dry-run
is correct.The text was updated successfully, but these errors were encountered: