diff options
author | Clint Adams <clint@users.sourceforge.net> | 2001-04-03 21:27:58 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2001-04-03 21:27:58 +0000 |
commit | ec01fb14b45369edadab11e88c5ce32933148c94 (patch) | |
tree | e0bb24b646f733fb619b7350b5bc76a060567a54 /Completion/Unix/Command | |
parent | da0179bfb22bff9f159e4a7c76e0f810e84d0b4a (diff) | |
download | zsh-ec01fb14b45369edadab11e88c5ce32933148c94.tar.gz zsh-ec01fb14b45369edadab11e88c5ce32933148c94.tar.xz zsh-ec01fb14b45369edadab11e88c5ce32933148c94.zip |
13899: OSTYPE checking
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_apm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Completion/Unix/Command/_apm b/Completion/Unix/Command/_apm index aedc814e0..f4fcaa3ef 100644 --- a/Completion/Unix/Command/_apm +++ b/Completion/Unix/Command/_apm @@ -1,9 +1,6 @@ #compdef apm -# this needs intelligence -local kludge=linux - -if [[ $kludge == "linux" ]] +if [[ $OSTYPE == linux* ]] then _arguments -C -s \ @@ -22,7 +19,7 @@ _arguments -C -s \ '(--ignore)-i[tell the system to ignore system-generated APM message]' \ '(-i)--ignore[tell the system to ignore system-generated APM message]' -elif [[ $kludge == "freebsd4.1" ]] +elif [[ $OSTYPE == freebsd* ]] then _arguments -C \ @@ -38,7 +35,7 @@ _arguments -C \ '-Z[transition system into standby mode]' \ '-z[suspend the system]' -elif [[ $kludge == "openbsd2.7" ]] +elif [[ $OSTYPE == openbsd* ]] then _arguments -C \ |