선생님은 다음과 같은 연결 연산자를 나열했습니다.
& && ( ) ; ;; | || new line
;; 체인 연산자는 무엇이며 그 기능은 무엇입니까?
답변1
교사는 나중에 case
의 진술 bash
과 각 옵션 진술이 어떻게 끝나는지에 대해 논의할 수 있습니다 ;;
.
좋다:
case $space in
[1-6]*)
Message="All is quiet."
;;
[7-8]*)
Message="Start thinking about cleaning out some stuff. There's a partition that is $space % full."
;;
9[1-8])
Message="Better hurry with that new disk... One partition is $space % full."
;;
99)
Message="I'm drowning here! There's a partition at $space %!"
;;
*)
Message="I seem to be running with an nonexistent amount of disk space..."
;;
esac