if文にfiがありません。

if文にfiがありません。

私は入れ子になったifステートメントを持つスクリプトを作成しました。

if [ choice = "1" ]; then
        if [ $package == *".tar.gz" ]; then //Could not find fi for this if
        tar -zxvf folder.tar.gz
        if [ $package == *".tar.bz2" ]; then
        tar -xvfj folder.tar.bz2
./configure
make 
make install
elif [ choice = "2" ]; then
dpkg -i package.deb
fi 
//Expected fi

スクリプトでfiエラーが発生した場所を記録しました。

答え1

以下は、使用したい一般的なケースですcase

case $choice in
  (1)
     case $package in
       (*.tar.gz) tar -zxvf folder.tar.gz;;
       (*.tar.bz2) tar -jxvf folder.tar.bz2;;
     esac &&
       ./configure &&
       make &&
       make install
     ;;
  (2)
     dpkg -i package.deb
     ;;
esac

答え2

条件の基本構造は次のとおりです。

if [ condition ]; then
    dosomething
fi

他の人:

if [ condition ]; then
    dosomething
elif [ condition ]; then
    dootherthing
else
    thelastchancetodosomething
fi

また、コードの次の条件が間違っているようです。

if [ $package == *".tar.gz" ]; then
    tar -zxvf folder.tar.gz
fi

私が正しく理解したら、次のようになります。

if echo $package | grep -qF ".tar.gz"; then
    tar -zxvf $package
fi

ああ、そして#コメントの代わりに//

例を修正し、インデントを改善してより明確にします。

if [ choice = "1" ]; then
    if echo $package | grep -qF ".tar.gz"; then
        tar -zxvf $package
    # You need to close previous `if` with a `fi` you want to use another
    # `if` here below, but we can use `elif`, so we don't need to close it.
    elif echo $package | grep -qF ".tar.bz2"; then
        tar -xvfj $package
    fi
    cd ${package%.*.*} # this removes the .tar.* extension
    ./configure
    make 
    make install
elif [ choice = "2" ]; then
    dpkg -i $package
fi

関連情報