fish-shell/share/completions/time.fish
axel 343cafef34 Redo installation file structure, move lots of things to $PREFIX/share/fish
darcs-hash:20060217101339-ac50b-d93d2c620a4b7f75f05ff461a6edbee001da7613.gz
2006-02-17 20:13:39 +10:00

11 lines
796 B
Fish

complete -c time -a "(__fish_complete_subcommand -- -o --output -f --format)" -d (_ "Command")
complete -c time -s f -l format -n "__fish_no_arguments" -d (_ "Specify output format") -x
complete -c time -s p -l portable -n "__fish_no_arguments" -d (_ "Use the portable output format")
complete -c time -s o -l output -n "__fish_no_arguments" -d (_ "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 (_ "(Used together with -o) Do not overwrite but append")
complete -c time -s v -l verbose -n "__fish_no_arguments" -d (_ "Verbose mode")
complete -c time -l help -n "__fish_no_arguments" -d (_ "Display help and exit")
complete -c time -s V -l version -n "__fish_no_arguments" -d (_ "Display version and exit")