Skip to content

Option clustering

h908714124 edited this page Jun 17, 2021 · 16 revisions

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

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.

Clone this wiki locally