mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
c2f6c6c1d2
darcs-hash:20060301165347-ac50b-3df9feec60dd9860e0988396d10b550a501f6802.gz
11 lines
804 B
Fish
11 lines
804 B
Fish
|
|
complete -c time -a "(__fish_complete_subcommand -- -o --output -f --format)" -d (N_ "Command")
|
|
|
|
complete -c time -s f -l format -n "__fish_no_arguments" -d (N_ "Specify output format") -x
|
|
complete -c time -s p -l portable -n "__fish_no_arguments" -d (N_ "Use the portable output format")
|
|
complete -c time -s o -l output -n "__fish_no_arguments" -d (N_ "Do not send the results to stderr, but overwrite the specified file") -r
|
|
complete -c time -s a -l append -n "__fish_no_arguments" -d (N_ "(Used together with -o) Do not overwrite but append")
|
|
complete -c time -s v -l verbose -n "__fish_no_arguments" -d (N_ "Verbose mode")
|
|
complete -c time -l help -n "__fish_no_arguments" -d (N_ "Display help and exit")
|
|
complete -c time -s V -l version -n "__fish_no_arguments" -d (N_ "Display version and exit")
|
|
|