about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-01-03 20:15:16 +0100
committerChristian Neukirchen <chneukirchen@gmail.com>2016-01-03 20:15:16 +0100
commitd371362806b5f1ae358bc36f0d617c2467cf1a99 (patch)
tree7089cb0112233983b3260ed9c52ca093d00ba9e5 /README.md
parent2800498d6efb0660397595c330b562cccb63af50 (diff)
downloadxe-d371362806b5f1ae358bc36f0d617c2467cf1a99.tar.gz
xe-d371362806b5f1ae358bc36f0d617c2467cf1a99.tar.xz
xe-d371362806b5f1ae358bc36f0d617c2467cf1a99.zip
README.md: fix xargs invocation.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6710479..55e2d88 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ or arguments, which includes the best features of `xargs(1)` and
 ## Benefits
 
 Over xargs:
-* Sane defaults (behaves like `xargs -d'\n' -I{} -L1 -n1 -r`).
+* Sane defaults (behaves like `xargs -d'\n' -I{} -n1 -r`).
 * No weird parsing, arguments are seperated linewise or by NUL byte.
 * Can also take arguments from command-line.
 * No shell involved unless `-s` is used.