aboutsummaryrefslogtreecommitdiff
path: root/toys/other/lsattr.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-05-25 17:56:11 -0700
committerRob Landley <rob@landley.net>2017-05-26 02:01:57 -0500
commiteb7e847adcecf11cd8fd99077ba3a582abe60146 (patch)
treedbd4676b2b1b2d072cead3beefa52de3a081e820 /toys/other/lsattr.c
parent8ab2d8a3fc7be48f327037c477bd58d038ea13b5 (diff)
downloadtoybox-eb7e847adcecf11cd8fd99077ba3a582abe60146.tar.gz
Be more consistent about periods in help text.
Diffstat (limited to 'toys/other/lsattr.c')
-rw-r--r--toys/other/lsattr.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/toys/other/lsattr.c b/toys/other/lsattr.c
index 8b91ef78..a361dc8e 100644
--- a/toys/other/lsattr.c
+++ b/toys/other/lsattr.c
@@ -19,11 +19,11 @@ config LSATTR
List file attributes on a Linux second extended file system.
(AacDdijsStu defined in chattr --help)
- -R Recursively list attributes of directories and their contents.
- -a List all files in directories, including files that start with '.'.
- -d List directories like other files, rather than listing their contents.
- -l List long flag names.
- -v List the file's version/generation number.
+ -R Recursively list attributes of directories and their contents
+ -a List all files in directories, including files that start with '.'
+ -d List directories like other files, rather than listing their contents
+ -l List long flag names
+ -v List the file's version/generation number
config CHATTR
bool "chattr"
@@ -33,26 +33,26 @@ config CHATTR
Change file attributes on a Linux second extended file system.
- -R Recurse.
- -v Set the file's version/generation number.
+ -R Recurse
+ -v Set the file's version/generation number
Operators:
- '-' Remove attributes.
- '+' Add attributes.
- '=' Set attributes.
+ '-' Remove attributes
+ '+' Add attributes
+ '=' Set attributes
Attributes:
- A Don't track atime.
- a Append mode only.
- c Enable compress.
- D Write dir contents synchronously.
- d Don't backup with dump.
- i Cannot be modified (immutable).
- j Write all data to journal first.
- s Zero disk storage when deleted.
- S Write file contents synchronously.
- t Disable tail-merging of partial blocks with other files.
- u Allow file to be undeleted.
+ A Don't track atime
+ a Append mode only
+ c Enable compress
+ D Write dir contents synchronously
+ d Don't backup with dump
+ i Cannot be modified (immutable)
+ j Write all data to journal first
+ s Zero disk storage when deleted
+ S Write file contents synchronously
+ t Disable tail-merging of partial blocks with other files
+ u Allow file to be undeleted
*/
#define FOR_lsattr
#include "toys.h"