Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-06-14 21:47:20 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2021-06-14 21:47:20 +0300
commite2b9215868a3d72691e5bc0f887354254606447b (patch)
treed800e563fcd78971be6cd8630fba1d61677975fb /e2fsprogs
parent643b308029ac42f466fa17e4ff400e47003205d9 (diff)
*: --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.c23
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 @@
//usage:#define chattr_full_usage "\n\n"
//usage: "Change ext2 file attributes\n"
//usage: "\n -R Recurse"
-//usage: "\n -v VER Set version/generation number"
+//TODD? "\n -p NUM Set project number"
+//usage: "\n -v NUM Set version/generation number"
//-V, -f accepted but ignored
//usage: "\nModifiers:"
//usage: "\n -,+,= Remove/add/set attributes"
//usage: "\nAttributes:"
-//usage: "\n A Don't track atime"
-//usage: "\n a Append mode only"
-//usage: "\n c Enable compress"
-//usage: "\n D Write dir contents synchronously"
+//usage: "\n A No atime"
+//usage: "\n a Append only"
+//usage: "\n c Compressed"
+//usage: "\n D Synchronous dir updates"
//usage: "\n d Don't backup with dump"
-//usage: "\n i Cannot be modified (immutable)"
-//usage: "\n j Write all data to journal first"
-//usage: "\n s Zero disk storage when deleted"
-//usage: "\n S Write synchronously"
-//usage: "\n t Disable tail-merging of partial blocks with other files"
-//usage: "\n u Allow file to be undeleted"
+//usage: "\n i Immutable"
+//usage: "\n j Write data to journal first"
+//usage: "\n s Zero storage when deleted"
+//usage: "\n S Synchronous file updates"
+//usage: "\n t Don't tail-merge with other files"
+//usage: "\n u Allow undelete"
#include "libbb.h"
#include "e2fs_lib.h"