about summary refs log tree commit diff
path: root/Completion/User/_xargs
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/User/_xargs')
-rw-r--r--Completion/User/_xargs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Completion/User/_xargs b/Completion/User/_xargs
new file mode 100644
index 000000000..71aff222f
--- /dev/null
+++ b/Completion/User/_xargs
@@ -0,0 +1,11 @@
+#compdef xargs
+
+_arguments \
+  -{p,t,x} \
+  -{e-,E}':end-of-file string:' \
+  -{i-,I}':replacement string for lines:' \
+  -{l-,L}':number of input lines:' \
+  '-n:maximum number of arguments:' \
+  '-s:maximum command line length:' \
+  ':command: _command_names -e' \
+  '*::args:_normal'