blob: a8d29403fd463754418a0c089afea03d3cfcca0e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#compdef watch
# watch(1) has completely different semantics on freebsd compared to linux, hence:
case $OSTYPE in
(freebsd*|dragonfly*) _watch-snoop "$@";;
(*) _default;;
esac
# NOTREACHED
|