aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/xargs.fish
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-03-07 09:26:45 +1000
committerGravatar axel <axel@liljencrantz.se>2006-03-07 09:26:45 +1000
commitd722fa59ca12d7204bee89a458daba0879e7c017 (patch)
treee8c006008dddaec4651d0d683d69b1f7cc4f92d1 /share/completions/xargs.fish
parent60065614bdb23cfeb2f52c95f9e4affff3fde7ca (diff)
Add completions for cdrecord, patch and xargs
darcs-hash:20060306232645-ac50b-89f38afaa1ae3106c18fc55acc75fc0dd702bd9a.gz
Diffstat (limited to 'share/completions/xargs.fish')
-rw-r--r--share/completions/xargs.fish20
1 files changed, 20 insertions, 0 deletions
diff --git a/share/completions/xargs.fish b/share/completions/xargs.fish
new file mode 100644
index 00000000..51187aa0
--- /dev/null
+++ b/share/completions/xargs.fish
@@ -0,0 +1,20 @@
+#
+#Completions for xargs
+#
+
+complete -c xargs -s 0 -l null -d (N_ "Input filenames are terminated by a null character instead of by whitespace, and the quotes and backslash are not special")
+complete -c xargs -s e -l eof -d (N_ "Set the end of file string to eof-str")
+complete -c xargs -s E -r -f -d (N_ "Set the end of file string to eof-str")
+complete -c xargs -l help -d (N_ "Display help and exit")
+complete -c xargs -s i -l replace -d (N_ "Replace replace-str in the initial arguments with names from standard input")
+complete -c xargs -s I -r -f -d (N_ "Replace replace-str in the initial arguments with names from standard input")
+complete -c xargs -s l -l max-lines -d (N_ "Use at most max-lines nonblank input lines per command line")
+complete -c xargs -s L -r -f -d (N_ "Use at most max-lines nonblank input lines per command line")
+complete -c xargs -s n -l max-args -r -f -d (N_ "Use at most max-args arguments per command line")
+complete -c xargs -s p -l interactive -d (N_ "Prompt the user about whether to run each command line and read a line from the terminal")
+complete -c xargs -s r -l no-run-if-empty (N_ "If the standard input does not contain any nonblanks, do not run the command")
+complete -c xargs -s s -l max-chars -r -f -d (N_ "Use at most max-chars characters per command line")
+complete -c xargs -s t -l verbose -d (N_ "Print the command line on the standard error output before executing it")
+complete -c xargs -l version -d (N_ "Display version and exit")
+complete -c xargs -s x -l exit -d (N_ "Exit if the size is exceeded")
+complete -c xargs -s P -l max-procs -r -f (N_ "Run up to max-procs processes at a time")