diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-14 20:47:20 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-14 20:47:20 +0200 |
commit | e2b9215868a3d72691e5bc0f887354254606447b (patch) | |
tree | d800e563fcd78971be6cd8630fba1d61677975fb /e2fsprogs | |
parent | 643b308029ac42f466fa17e4ff400e47003205d9 (diff) | |
download | busybox-w32-e2b9215868a3d72691e5bc0f887354254606447b.tar.gz busybox-w32-e2b9215868a3d72691e5bc0f887354254606447b.tar.bz2 busybox-w32-e2b9215868a3d72691e5bc0f887354254606447b.zip |
*: --help tweaks
function old new delta
packed_usage 33589 33552 -37
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'e2fsprogs')
-rw-r--r-- | e2fsprogs/chattr.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/e2fsprogs/chattr.c b/e2fsprogs/chattr.c index c37469021..1d267f7a4 100644 --- a/e2fsprogs/chattr.c +++ b/e2fsprogs/chattr.c | |||
@@ -24,22 +24,23 @@ | |||
24 | //usage:#define chattr_full_usage "\n\n" | 24 | //usage:#define chattr_full_usage "\n\n" |
25 | //usage: "Change ext2 file attributes\n" | 25 | //usage: "Change ext2 file attributes\n" |
26 | //usage: "\n -R Recurse" | 26 | //usage: "\n -R Recurse" |
27 | //usage: "\n -v VER Set version/generation number" | 27 | //TODD? "\n -p NUM Set project number" |
28 | //usage: "\n -v NUM Set version/generation number" | ||
28 | //-V, -f accepted but ignored | 29 | //-V, -f accepted but ignored |
29 | //usage: "\nModifiers:" | 30 | //usage: "\nModifiers:" |
30 | //usage: "\n -,+,= Remove/add/set attributes" | 31 | //usage: "\n -,+,= Remove/add/set attributes" |
31 | //usage: "\nAttributes:" | 32 | //usage: "\nAttributes:" |
32 | //usage: "\n A Don't track atime" | 33 | //usage: "\n A No atime" |
33 | //usage: "\n a Append mode only" | 34 | //usage: "\n a Append only" |
34 | //usage: "\n c Enable compress" | 35 | //usage: "\n c Compressed" |
35 | //usage: "\n D Write dir contents synchronously" | 36 | //usage: "\n D Synchronous dir updates" |
36 | //usage: "\n d Don't backup with dump" | 37 | //usage: "\n d Don't backup with dump" |
37 | //usage: "\n i Cannot be modified (immutable)" | 38 | //usage: "\n i Immutable" |
38 | //usage: "\n j Write all data to journal first" | 39 | //usage: "\n j Write data to journal first" |
39 | //usage: "\n s Zero disk storage when deleted" | 40 | //usage: "\n s Zero storage when deleted" |
40 | //usage: "\n S Write synchronously" | 41 | //usage: "\n S Synchronous file updates" |
41 | //usage: "\n t Disable tail-merging of partial blocks with other files" | 42 | //usage: "\n t Don't tail-merge with other files" |
42 | //usage: "\n u Allow file to be undeleted" | 43 | //usage: "\n u Allow undelete" |
43 | 44 | ||
44 | #include "libbb.h" | 45 | #include "libbb.h" |
45 | #include "e2fs_lib.h" | 46 | #include "e2fs_lib.h" |