xz: Add -r,--recursive to --help and --long-help.

This commit is contained in:
Jia Tan 2023-11-01 15:20:25 +08:00
parent 6b4b815b94
commit e43178da0e
1 changed files with 8 additions and 2 deletions

View File

@ -1017,12 +1017,18 @@ message_help(bool long_help)
" ignore possible remaining input data")); " ignore possible remaining input data"));
puts(_( puts(_(
" --no-sparse do not create sparse files when decompressing\n" " --no-sparse do not create sparse files when decompressing\n"
" -S, --suffix=.SUF use the suffix '.SUF' on compressed files\n" " -S, --suffix=.SUF use the suffix '.SUF' on compressed files"));
}
puts(_(
" -r, --recursive operate recursively on directories"));
if (long_help)
puts(_(
" --files[=FILE] read filenames to process from FILE; if FILE is\n" " --files[=FILE] read filenames to process from FILE; if FILE is\n"
" omitted, filenames are read from the standard input;\n" " omitted, filenames are read from the standard input;\n"
" filenames must be terminated with the newline character\n" " filenames must be terminated with the newline character\n"
" --files0[=FILE] like --files but use the null character as terminator")); " --files0[=FILE] like --files but use the null character as terminator"));
}
if (long_help) { if (long_help) {
puts(_("\n Basic file format and compression options:\n")); puts(_("\n Basic file format and compression options:\n"));