This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
tcsh シェルでこれを実行しようとしていますが、これを実行するためのコマンドが見つかりません。
while getopts 'w:c:hp' OPT; do
case $OPT in
w) WARN=$OPTARG;;
c) CRIT=$OPTARG;; #this is in bash
h) hlp="yes";;
p) perform="yes";;
*) unknown="yes";;
esac
done