You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: Found argument '-d' which wasn't expected, or isn't valid in this context
If you tried to supply `-d` as a value rather than a flag, use `-- -d`
USAGE:
ouch decompress [OPTIONS] <FILES>...
For more information try --help
and
$ ouch decompress --help
ouch-decompress
Decompresses one or more files, optionally into another folder
USAGE:
ouch decompress [OPTIONS] <FILES>...
ARGS:
<FILES>... Files to be decompressed
OPTIONS:
-h, --help Print help information
-o, --dir <OUTPUT_DIR> Choose to files in a directory other than the current
The text was updated successfully, but these errors were encountered:
Since you fixed -d in code, I though README should just use -o/--dir.
Since README says:
You can redirect the decompression results to another folder with the -d/--dir flag.
# Decompress 'summer_vacation.zip' inside of new folder 'pictures'
ouch decompress summer_vacation.zip -d pictures
But
ouch decompress --help
ouch-decompress
Decompresses one or more files, optionally into another folder
USAGE:
ouch decompress [OPTIONS] <FILES>...
ARGS:
<FILES>... Files to be decompressed
OPTIONS:
-h, --help Print help information
-o, --dir <OUTPUT_DIR> Choose to files in a directory other than the current
There is no -o in README, or maybe delete -o in the code instead.
Since when you are using
-d
and
The text was updated successfully, but these errors were encountered: