첫 번째 if 명령에 else를 어떻게 사용할 수 있습니까?

첫 번째 if 명령에 else를 어떻게 사용할 수 있습니까?

저는 현재 bash 스크립트를 작성 중입니다. 두 개의 if 명령이 있습니다. 여기서는 문제를 실제로 설명할 수 없으므로 내 문제를 코드로 설명하겠습니다.

#!/bin/bash
echo -e "What is the SGID?"
read Cevap50

if [ ! -f /home/fixscript/AudioBot$audiobot_port/.adminlikler_sgid_silmeyin ]
then
rm -rf .rights.toml
touch .adminlikler_sgid_silmeyin
echo -ne "$Cevap50" >> .adminlikler_sgid_silmeyin
adminlikler_sgid=`cat .adminlikler_sgid_silmeyin`
rights_bir
echo "        groupid = [ $adminlikler_sgid ]" >> .rights.toml
echo '  # And/Or your admin Client Uids here' >> .rights.toml
elif [ ! -f /home/fixscript/AudioBot$audiobot_port/.adminlikler_uid_silmeyin ]
then
echo "  useruid = []" >> .rights.toml
rights_iki
clear
else #There is the problem, this else should affect line 14th's if. But it just effects both of them.
#Some Codes
else #This else should affect line 5th's if.

답변1

if elif와 else를 체인 링크로 생각하세요. if는 시작, elif는 중간 링크, else는 끝 링크입니다. 당신이 쓴 것은 "시작, 중간 링크, 끝 링크, 끝 링크"입니다. 5행과 14행에서 if를 분리하기 위해 찾고 있는 내용이 if에 중첩되어 있습니다.

그래서 내 제안은 이렇습니다.

#!/bin/bash
echo -e "What is the SGID?"
read Cevap50

if [ ! -f /home/fixscript/AudioBot$audiobot_port/.adminlikler_sgid_silmeyin ]
then
    rm -rf .rights.toml
    touch .adminlikler_sgid_silmeyin
    echo -ne "$Cevap50" >> .adminlikler_sgid_silmeyin
    adminlikler_sgid=`cat .adminlikler_sgid_silmeyin`
    rights_bir
    echo "        groupid = [ $adminlikler_sgid ]" >> .rights.toml
    echo '  # And/Or your admin Client Uids here' >> .rights.toml
else #Effects line 5's if.
    if [ ! -f /home/fixscript/AudioBot$audiobot_port/.adminlikler_uid_silmeyin ]
    then
        echo "  useruid = []" >> .rights.toml
        rights_iki
        clear
    else # Effects line 15's if

관련 정보