유닉스에서는 ';;'이 연결 연산자인가요? 어떻게 작동하나요? [복사]

유닉스에서는 ';;'이 연결 연산자인가요? 어떻게 작동하나요? [복사]

선생님은 다음과 같은 연결 연산자를 나열했습니다.

& && ( ) ; ;; | || 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

바라보다TLDP Bash 초보자 가이드 - 7.3. 사용 사례 설명

관련 정보