diff options
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 c374690..1d267f7 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" |