1

誰かがこのコードを見て、何が問題なのかを見つけてもらえますか?

#!/bin/sh
while :
do
    echo " Select one of the following options:"
    echo " d or D) Display today's date and time"
    echo " l or L) List the contents of the present working directory"
    echo " w or W) See who is logged in"
    echo " p or P) Print the present working directory"
    echo " a or A) List the contents of a specified directory"
    echo " b or B) Create a backup copy of an ordinary file"
    echo " q or Q) Quit this program"
    echo " Enter your option and hit <Enter>: \c"
    read option 
    case "$option" in
        d|D) date
             ;;
        l|L) ls $PWD
             ;;
        w|w) who
                 ;;
        p|P) pwd
             ;;
        a|A) echo "Please specify the directory and hit <Enter>: \c"
             read directory
                    if [ "$directory = "q" -o "Q" ]
                then
                    exit 0
                fi

                while [ ! -d "$directory" ]
                do
                        echo "Usage: "$directory" must be a directory."
                    echo "Re-enter the directory and hit <Enter>: \c"
                    read directory

                        if [ "$directory" = "q" -o "Q" ]
                        then    
                            exit 0

                        fi

                done
                    printf ls "$directory"

            ;;  
            b|B) echo "Please specify the ordinary file for backup and hit <Enter>: \c"
             read file
                if [ "$file" = "q" -o "Q" ]
                then
                    exit 0
                fi     

                while [ ! -f "$file" ]
                do
                    echo "Usage: \"$file\" must be an ordinary file."
                    echo "Re-enter the ordinary file for backup and hit <Enter>: \c"
                    read file
                        if [ "$file" = "q" -o "Q" ]
                        then
                            exit 0
                        fi              
                done
                    cp "$file" "$file.bkup"
                 ;;

        q|Q) exit 0
             ;;

    esac
    echo
done
exit 0

理解できない構文エラーがいくつかあります。ただし、この UNIX システムでは echo -e が機能しないことに注意する必要があります (なぜわからないのかを聞かないでください。また、それを変更する権限がまったくなく、たとえ許可されていなくてもに)

Bash シェル スクリプト エラー: "./myDemo ./myDemo: 62 行目: 予期しないトークン付近の構文エラーdone' ./myDemo: line 62:" [編集済み]

編集: while ステートメントのエラーを修正しましたが、スクリプトを実行すると、まだ正しく動作しないものがあります。

  1. b|B) switch ステートメントのようです

    cp $file $file.bkupは実際にファイルを file.bkup にコピーしませんか?

  2. a|A) switch ステートメント内

ls "$directory"は、ユーザーが参照できるようにディレクトリのリストを出力しませんか?

#!/bin/bash
while $TRUE
do
        echo " Select one of the following options:"
        echo " d or D) Display today's date and time"
        echo " l or L) List the contents of the present working directory"
        echo " w or W) See who is logged in"
        echo " p or P) Print the present working directory"
        echo " a or A) List the contents of a specified directory"
        echo " b or B) Create a backup copy of an ordinary file"
        echo " q or Q) Quit this program"
        echo " Enter your option and hit <Enter>: \c"
        read option
        case "$option" in
                d|D) date
                     ;;
                l|L) ls pwd
                     ;;
                w|w) who
                     ;;
                p|P) pwd
                     ;;
                a|A) echo "Please specify the directory and hit <Enter>: \c"
                     read directory
                        if [ ! -d "$directory"  ]
                        then
                                while [ ! -d "$directory" ]
                                do
                                        echo "Usage: "$directory" must be a directory."
                                        echo "Specify the directory and hit <Enter>: \c"
                                        read directory

                                        if [ "$directory" = "q" -o "Q" ]
                                        then
                                        exit 0

                                        elif [ -d "$directory" ]
                                        then
                                                ls "$directory"

                                        else
                                        continue
                                        fi
                                done
                        fi
                        ;;
                b|B) echo "Specify the ordinary file for backup and hit <Enter>: \c"
                     read file
                        if [ ! -f "$file" ]
                         then
                                while [ ! -f "$file" ]
                                do 
                                        echo "Usage: "$file" must be an ordinary file."
                                        echo "Specify the ordinary file for backup and hit <Enter>: \c"
                                        read file
                                        if [ "$file" = "q" -o "Q" ]
then
                                        exit 0
                                        elif [ -f "$file" ]
                                        then
                                        cp $file $file.bkup
                                        fi
                                done
                        fi
                        ;;

                q|Q) exit 0
                     ;;

        esac
        echo
done
exit 0

もう 1 つ...コードの自動解析に使用できるエディターはありますか? つまり、NetBeans に似たものですか?

4

4 に答える 4

5

do2 番目の後にa がありませんwhile。(「B」のケース。その上の「A」のケースと比較してください。)

私はシェル スクリプトをシンタックス ハイライトする gvim を使用していますが、エディターについては別の質問として尋ねる必要があると思います。


あなたの変更された質問について: あなたのロジックはABケースの両方で壊れています: if/while ネストからバックアップ ロジックを引き出す必要があります...ifは実際には何もしていません。また、スペースでスクリプトが壊れないように、必ずすべてのファイル名を引用符で囲んでください。ネストされた引用符をエスケープします。-eを使用する echo ステートメントには が必要だと思います\c

したがって、次のようなことを行います。

b|B) echo -e "Specify the ordinary file for backup and hit <Enter>: \c"
    read file
    while [ ! -f "$file" ]
    do 
        echo "Usage: \"$file\" must be an ordinary file."
        echo -e "Specify the ordinary file for backup and hit <Enter>: \c"
        read file
        if [ "$file" = "q" -o "$file" = "Q" ]
        then
            exit 0
        fi
    done
    cp "$file" "$file.bkup"
    ;;

ケースに対しても同じ種類の変更を行う必要がありますA

于 2009-12-07T16:57:48.840 に答える
3

A) ディレクトリ一覧セクションの 2 つの問題。

  1. -o 結合は、あなたが思っているようには機能しません。次のようにする必要があります。

                if [ "$directory" = "q" -o "$directory" = "Q" ]
    
  2. 指定されたディレクトリが実際にすぐに使用できるディレクトリである場合、外側の「if」には「else」が必要です。

B) バックアップ セクションには、同じ 2 つの問題があります。それらを修正すると、両方のコマンド オプションが機能します。

于 2009-12-07T17:39:51.053 に答える
1

1) あまり多くのエコーを使用しないでください.. メニュー システムを作成するには、cat here-document を使用できます。

cat <<EOF
-------------------------------------------------------
Select one of the following options:
d or D) Display today's date and time
l or L) List the contents of the present working directory
w or W) See who is logged in
p or P) Print the present working directory
a or A) List the contents of a specified directory
b or B) Create a backup copy of an ordinary file
q or Q) Quit this program
--------------------------------------------------------
EOF

またはこれで十分です

echo "-------------------------------------------------------
Select one of the following options:
d or D) Display today's date and time
l or L) List the contents of the present working directory
w or W) See who is logged in
p or P) Print the present working directory
a or A) List the contents of a specified directory
b or B) Create a backup copy of an ordinary file
q or Q) Quit this program
--------------------------------------------------------"

2) use にオプションの選択を求める場合、-p を指定して read を使用できます。

read -p "Enter your option and hit <Enter>: " choice

3) printf は echo よりも移植性が高いため、可能な限り使用する必要があります。

于 2009-12-10T23:19:18.020 に答える