aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/completions/xargs.fish
diff options
context:
space:
mode:
authorGravatar npilon <npilon@gmail.com>2006-03-13 11:44:33 +1000
committerGravatar npilon <npilon@gmail.com>2006-03-13 11:44:33 +1000
commit04cf08b93bd5365f824c7451b38885d371b650eb (patch)
treec31ffd52b1ad7f601d7122114bd33d44eb6fd860 /share/completions/xargs.fish
parent2c5b52eb6cbc5308e08c9e20487ddc2e895c5ed3 (diff)
xargs completion fix
Added a missing -d to a couple of xargs completions. darcs-hash:20060313014433-c90d9-b7c6e444ecea0ed2e75304bd9663d20ea55df0ff.gz
Diffstat (limited to 'share/completions/xargs.fish')
-rw-r--r--share/completions/xargs.fish4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/completions/xargs.fish b/share/completions/xargs.fish
index 8456a123..19231b44 100644
--- a/share/completions/xargs.fish
+++ b/share/completions/xargs.fish
@@ -12,9 +12,9 @@ complete -c xargs -s l -l max-lines -d (N_ "Use at most max-lines nonblank input
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 r -l no-run-if-empty -d (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")
+complete -c xargs -s P -l max-procs -r -f -d (N_ "Run up to max-procs processes at a time")