이 명령을 어떻게 반복합니까?

이 명령을 어떻게 반복합니까?

내 코드 조각은 아래와 같습니다. 스크립트가 경로를 찾을 수 없으면 현재 닫힙니다.

[echo "could not find $REPLY, ensure the path is correct and try again"] 

대신, 이 시점에서 루프를 실행하고 경로에 대한 입력을 다시 허용하려고 합니다. 어떻게 해야 합니까?

while [ $choice -eq 3 ]; do

read choice
if [ $choice -eq 1 ] ; then

    echo "You have chosen to spec....  '/path/../'" 
    read
    if [ -d $REPLY ]; then
        find $REPLY -type f -printf '%TY-%Tm-%Td %.8TT %p\n '| sort -r | head -20
    else 
        echo "could not find $REPLY, ensure the path is correct and try again"
    fi
else

답변1

while true; do
    echo "You have chosen to spec....  '/path/../'" 
    read
    if [ -d "$REPLY" ]; then
        find "$REPLY" -type f -printf '%TY-%Tm-%Td %.8TT %p\n '| sort -r | head -20
        break
    else
        echo "could not find $REPLY, ensure the path is correct and try again"
        echo "press enter to continue..."
        read cont
    fi
done

답변2

내가 사용할 수도while 그리고 case:

i=0 c=3
while case "$((i+=!(c==1))).$c"   in 
      ([MAX_REPEAT_NUM].*) ! break;;
      (*.3) read c; continue      ;;
      (*.1) printf 'prompt> '
            read d || continue    ;;esac
do    [ -d "$d" ] || continue
      find "$REPLY" -type f \
            -printf '%TY-%Tm-%Td %.8TT %p\n '| 
      sort -r | head -20
done

이런 식으로 가능성의 분기를 테스트할 수 있습니다.

관련 정보