fish-shell/share/completions/date.fish
Peter Ammon 7659554dea Remove use of caret redirection from share/*
This removes the use of caret redirections from share/completions
and share/functions, in preparation for dropping support in fish.
2018-04-01 13:42:38 -07:00

22 lines
1.4 KiB
Fish

if date --version > /dev/null 2>/dev/null
complete -c date -s d -l date -d "Display date described by string" -x
complete -c date -s f -l file -d "Display date for each line in file" -r
complete -c date -s I -l iso-8601 -d "Output in ISO 8601 format" -x -a "date hours minutes seconds"
complete -c date -s s -l set -d "Set time" -x
complete -c date -s R -l rfc-2822 -d "Output RFC-2822 compliant date string"
complete -c date -s r -l reference -d "Display the last modification time of file" -r
complete -c date -s u -l utc -d "Print or set Coordinated Universal Time"
complete -c date -l universal -d "Print or set Coordinated Universal Time"
complete -c date -s h -l help -d "Display help and exit"
complete -c date -s v -l version -d "Display version and exit"
else # OS X
complete -c date -s d -d 'Set the kernel\'s value for daylight saving time' -x
complete -c date -s f -d 'Use format string to parse the date provided rather than default format'
complete -c date -s j -d 'Do no try to set the date'
complete -c date -s n -d 'Set the time for current machine only in the local group'
complete -c date -s r -d 'Print date and time represented by SEC since Epoch' -x
complete -c date -s t -d 'Set system\'s value for MINUTES west of GMT'
complete -c date -s u -d 'Display or set the date int UTC time'
complete -c date -s v -d 'Adjust the time component backward(-)/forward(+) according to VAL' -x
end