diff options
author | Elliott Hughes <enh@google.com> | 2019-10-02 18:38:12 -0700 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-10-04 16:16:35 -0500 |
commit | 09c7c9ee1020ebb915c4fbaf4a55127f40ef3daa (patch) | |
tree | f1e70fda369534a1a93f28c4afa795f3044eb631 /toys | |
parent | 2301071e2b7f9c18ac2c6c05ddd5b3325352f5e6 (diff) | |
download | toybox-09c7c9ee1020ebb915c4fbaf4a55127f40ef3daa.tar.gz |
file.c: add -s to synopsis and fix case consistency.
Diffstat (limited to 'toys')
-rw-r--r-- | toys/posix/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/posix/file.c b/toys/posix/file.c index 869bf108..5f18a539 100644 --- a/toys/posix/file.c +++ b/toys/posix/file.c @@ -10,14 +10,14 @@ config FILE bool "file" default y help - usage: file [-bhL] [file...] + usage: file [-bhLs] [file...] Examine the given files and describe their content types. -b Brief (no filename) -h Don't follow symlinks (default) -L Follow symlinks - -s show block/char device contents + -s Show block/char device contents */ #define FOR_file |