1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-01 21:51:40 +02:00
zsh/Completion/Unix/Command/_watch
Daniel Shahaf d470453d76 35274: completion: Add FreeBSD's watch(1)
Review-by: Oliver Kiddle
2015-07-26 11:23:14 +00:00

9 lines
205 B
Text

#compdef watch
# watch(1) has completely different semantics on freebsd compared to linux, hence:
case $OSTYPE in
(freebsd*|dragonfly*) _watch-snoop "$@";;
(*) _default;;
esac
# NOTREACHED