about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2015-10-23 19:41:05 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2015-10-23 19:41:05 +0200
commit3b60bbb5942d8ecfc9913d8dbda7b0cf1a0329b3 (patch)
tree62d3b9ba0a930681e6ea2cb08e4a244ef68379d6 /README.md
parent14177baa1bf6c8312803b105262e68af612d8eb8 (diff)
downloadlr-3b60bbb5942d8ecfc9913d8dbda7b0cf1a0329b3.tar.gz
lr-3b60bbb5942d8ecfc9913d8dbda7b0cf1a0329b3.tar.xz
lr-3b60bbb5942d8ecfc9913d8dbda7b0cf1a0329b3.zip
add shell quoting
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 99aa027..acf406a 100644
--- a/README.md
+++ b/README.md
@@ -5,9 +5,9 @@ best features of `ls(1)`, `find(1)` and `du(1)`.
 
 ## Usage:
 
-	lr [-0|-F|-l|-f FMT] [-D] [-H|-L] [-1dsx] [-U|-o ORD] [-t TEST]* PATH...
+	lr [-0|-F|-l|-f FMT] [-D] [-H|-L] [-1Qdsx] [-U|-o ORD] [-t TEST]* PATH...
 
-* `-0`: output filenames seperated by NUL bytes.
+* `-0`: output filenames seperated by NUL bytes (implies `-Q`).
 * `-F`: output filenames and an indicator of their file type (`*/=>@|`).
 * `-l`: long output ala `ls -l`.
 * `-f FMT`: custom formatting, see below.
@@ -16,6 +16,7 @@ best features of `ls(1)`, `find(1)` and `du(1)`.
 * `-H`: only follow symlinks on command line.
 * `-L`: follow all symlinks.
 * `-1`: don't go below one level of directories.
+* `-Q`: don't shell quote file names.
 * `-d`: don't enter directories.
 * `-s`: don't print leading `./`.
 * `-x`: don't enter other filesystems.