중첩 된 case 문에서 while 루프를 벗어나려면 어떻게해야합니까? [닫은]

아래 스크립트에서 사용자는 잠재적으로 잘못된 스크립트 실행을 계속 진행할 것인지 묻는 메시지를 표시합니다. 사용자가 Y프롬프트에 입력 하면 case블록에서 빠져 나와 while다시 루프로 다시 보내집니다 .

#! /bin/bash
set -e

echo
echo "bad install start"
echo "-----------------------------------------"

while true; do
        read -p "this script will probably fail - do you want to run anyway?" yn
        case $yn in
                [Yy]*)
                        ##### WHAT GOES HERE?? #####
                        ;;
                [Nn]*)
                        exit ;;
                *)
                        echo "answer y or n" ;;
        esac

        echo "script has broken out of case back into while loop"
done

echo -e "\e[33m Installing bad packagename \e[0m"
apt-get install sdfsdfdfsd

echo "rest of script - will i keep running?"

n입력, 스크립트는 전체로 원하는 존재. Y스크립트를 입력 하면 while 블록 case while 블록 모두에서 벗어나지 만 완전히 종료되지 않도록 하는 방법을 알고 싶습니다 . 자리 표시 자 ( “무엇입니까?”)에 입력 할 수있는 항목이 있습니까?



답변

사용자가 “y”를 입력 한 경우 while 및 case를 모두 종료 할 수 있습니다.

break [n]
       Exit from within a for, while, until, or select loop.  If  n  is
       specified, break n levels.  n must be  1.  If n is greater than
       the number of enclosing loops, all enclosing loops  are  exited.
       The  return  value is 0 unless n is not greater than or equal to
       1.

귀하의 경우에는하고자합니다 break 2.


답변

@ dhag는 큰 대답이 있습니다. 다음을 사용할 수도 있습니다.

a=0
while [ "$a" -eq 0 ]; do
     ...
     [Nn]*)
          a=1;
          ;;
      ...
done


답변