mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-01 21:51:40 +02:00
9 lines
205 B
Text
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
|