diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/include/usage.h b/include/usage.h index 77b7b99bd..44cc83422 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -4406,9 +4406,9 @@ | |||
4406 | "nameserver 10.0.0.1\n" | 4406 | "nameserver 10.0.0.1\n" |
4407 | 4407 | ||
4408 | #define tar_trivial_usage \ | 4408 | #define tar_trivial_usage \ |
4409 | "-[" IF_FEATURE_TAR_CREATE("c") IF_FEATURE_SEAMLESS_GZ("z") \ | 4409 | "-[" IF_FEATURE_TAR_CREATE("c") "xt" IF_FEATURE_SEAMLESS_GZ("z") \ |
4410 | IF_FEATURE_SEAMLESS_BZ2("j") IF_FEATURE_SEAMLESS_LZMA("a") \ | 4410 | IF_FEATURE_SEAMLESS_BZ2("j") IF_FEATURE_SEAMLESS_LZMA("a") \ |
4411 | IF_FEATURE_SEAMLESS_Z("Z") IF_FEATURE_TAR_NOPRESERVE_TIME("m") "xtvO] " \ | 4411 | IF_FEATURE_SEAMLESS_Z("Z") IF_FEATURE_TAR_NOPRESERVE_TIME("m") "vO] " \ |
4412 | IF_FEATURE_TAR_FROM("[-X FILE] ") \ | 4412 | IF_FEATURE_TAR_FROM("[-X FILE] ") \ |
4413 | "[-f TARFILE] [-C DIR] [FILE]..." | 4413 | "[-f TARFILE] [-C DIR] [FILE]..." |
4414 | #define tar_full_usage "\n\n" \ | 4414 | #define tar_full_usage "\n\n" \ |
@@ -4417,7 +4417,8 @@ | |||
4417 | "or list files from a tar file\n" \ | 4417 | "or list files from a tar file\n" \ |
4418 | "\nOptions:" \ | 4418 | "\nOptions:" \ |
4419 | IF_FEATURE_TAR_CREATE( \ | 4419 | IF_FEATURE_TAR_CREATE( \ |
4420 | "\n c Create") \ | 4420 | "\n c Create" \ |
4421 | ) \ | ||
4421 | "\n x Extract" \ | 4422 | "\n x Extract" \ |
4422 | "\n t List" \ | 4423 | "\n t List" \ |
4423 | "\nArchive format selection:" \ | 4424 | "\nArchive format selection:" \ |
@@ -4434,16 +4435,18 @@ | |||
4434 | "\n Z Filter the archive through compress" \ | 4435 | "\n Z Filter the archive through compress" \ |
4435 | ) \ | 4436 | ) \ |
4436 | IF_FEATURE_TAR_NOPRESERVE_TIME( \ | 4437 | IF_FEATURE_TAR_NOPRESERVE_TIME( \ |
4437 | "\n m Do not extract files modified time" \ | 4438 | "\n m Do not restore mtime" \ |
4438 | ) \ | 4439 | ) \ |
4439 | "\nFile selection:" \ | 4440 | "\nFile selection:" \ |
4440 | "\n f Name of TARFILE or \"-\" for stdin" \ | 4441 | "\n f Name of TARFILE or \"-\" for stdin" \ |
4441 | "\n O Extract to stdout" \ | 4442 | "\n O Extract to stdout" \ |
4442 | IF_FEATURE_TAR_FROM( \ | 4443 | IF_FEATURE_TAR_FROM( \ |
4444 | IF_FEATURE_TAR_LONG_OPTIONS( \ | ||
4443 | "\n exclude File to exclude" \ | 4445 | "\n exclude File to exclude" \ |
4446 | ) \ | ||
4444 | "\n X File with names to exclude" \ | 4447 | "\n X File with names to exclude" \ |
4445 | ) \ | 4448 | ) \ |
4446 | "\n C Change to directory DIR before operation" \ | 4449 | "\n C Change to DIR before operation" \ |
4447 | "\n v Verbose" \ | 4450 | "\n v Verbose" \ |
4448 | 4451 | ||
4449 | #define tar_example_usage \ | 4452 | #define tar_example_usage \ |