aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs/chattr.c
diff options
context:
space:
mode:
Diffstat (limited to 'e2fsprogs/chattr.c')
-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 @@
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"