We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Option clustering for unix-type flags is supported.
If mode flags -x and -z, and a unary option -f are defined, the following is valid input
-x
-z
-f
tar -xzf file.tgz
which is shorter than having to type out each option name in full:
tar -x -z -f file.tgz
Set @Command(unixClustering = true) to enable unix clustering.
@Command(unixClustering = true)