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 Shell 脚本错误:“./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

另一件事……有没有可以用来自动解析代码的编辑器?即类似于 NetBeans 的东西?

4

4 回答 4

5

do在第二个之后缺少 a while。(“B”案例;将其与上面的“A”案例进行比较。)

我使用 gvim,它将语法高亮显示 shell 脚本,但我认为您需要将编辑器作为一个单独的问题询问。


至于您修改后的问题:您的逻辑在两种情况下都被破坏了AB您需要将备份逻辑从您的 if/while 嵌套中提取出来......if实际上并没有为您做任何事情。此外,请务必引用所有文件名,以免空格破坏您的脚本。转义嵌套引号。我相信你需要一个-e关于使用\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) 目录列表部分中的两个问题。

  1. -o 连词不像你想象的那样起作用。应该:

                if [ "$directory" = "q" -o "$directory" = "Q" ]
    
  2. 您的外部“if”需要一个“else”来处理当给定目录确实是一个目录时的情况。

B) 备份部分有同样的两个问题。修复这些,两个命令选项都将起作用。

于 2009-12-07T17:39:51.053 回答
2

$file在大多数地方都引用了该变量,但在cp命令中却没有。它应该是:

cp "$file" "$file.bkup"

您的某些echo命令末尾有“\c”。我认为这是特定于 csh 的。Bash 只会逐字地回显字符“\”和“c”。

您的语句while $TRUE通过变量为 null 或未设置来工作。如果它被设置为某个值,它将尝试将内容作为命令执行。如果你想做那种类型的无限循环,它通常在 Bash 中像这样完成:

while true

其中 true 是内置的 shell。或者:

while :

其中冒号是返回 true 的无操作。当然,还有其他方法可以完成同样的事情。

在这种l|L)情况下,您可能想要执行以下任一操作:

ls

或者

ls $PWD

按照您现在的方式,它将尝试列出名为“pwd”的文件的条目。

vim 和 nano 都可以为 Bash 做语法高亮。如果它们尚未设置~/.nanorc~/.vimrc您可以执行以下操作:

对于纳米:

nano -Y sh scriptname

对于 vim:

:syntax on
:set filetype=sh
于 2009-12-07T18:25:53.530 回答
1

1)你不要使用这么多的回声..来创建一个菜单系统,你可以在这里使用cat-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 选择一个选项时,您可以使用 read 和 -p,例如

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

3) printf 比 echo 更便携,因此您应该尽可能使用它。

于 2009-12-10T23:19:18.020 回答