diff options
author | Erich Eckner <git@eckner.net> | 2016-12-17 13:23:06 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-12-17 13:23:06 +0100 |
commit | 04f082666c3ab23e892eb9fdce8865dbdeb15893 (patch) | |
tree | efdc8bcd3d06e83e44eb6e6830009d32fcd1a6f8 | |
parent | c17a255d63566d8f92bc824eaf8a4768831ce724 (diff) | |
download | crux-patches-04f082666c3ab23e892eb9fdce8865dbdeb15893.tar.xz |
coreutils: shred: fix typo in help message
-rw-r--r-- | core/coreutils/coreutils-shred.patch.new | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/coreutils/coreutils-shred.patch.new b/core/coreutils/coreutils-shred.patch.new index fe08175..bcbc4b9 100644 --- a/core/coreutils/coreutils-shred.patch.new +++ b/core/coreutils/coreutils-shred.patch.new @@ -12,7 +12,7 @@ { {"exact", no_argument, NULL, 'x'}, {"force", no_argument, NULL, 'f'}, -+ {"keep-hard-links", no_argument, NULL, 'h'}, ++ {"shred-hard-links", no_argument, NULL, 'h'}, {"iterations", required_argument, NULL, 'n'}, {"size", required_argument, NULL, 's'}, {"random-source", required_argument, NULL, RANDOM_SOURCE_OPTION}, @@ -20,7 +20,7 @@ printf (_("\ -f, --force change permissions to allow writing if necessary\n\ -+ -h, --keep-hard-links do not shred hard linked files\n\ ++ -h, --shred-hard-links also shred hard linked files\n\ -n, --iterations=N overwrite N times instead of the default (%d)\n\ --random-source=FILE get random bytes from FILE\n\ -s, --size=N shred this many bytes (suffixes like K, M, G accepted)\n\ |