0

我正在编写一个脚本,以便对本地机器上的开发站点执行一系列操作。这个想法是列出“/var/www/”中的所有文件夹(网站),让用户选择一个来执行后续操作。我在这里找到了这个脚本的一些灵感。

我刚刚开始学习 bash,所以请期待代码中的亵渎:

这是我卡住的地方:

#!/bin/bash

cd /var/www
options=( $(find . -maxdepth 1 -type d -printf '%P\n') )
options[$[${#options[@]}+1]]="type a new site"

title="Website developing script"
prompt="Choose the site:"

echo "$title"
PS3="$prompt "
select opt in "${options[@]}" "Quit"; do 

    case "$REPLY" in
        # so far so good, all folders are properly listed as options            

        # the answer, I guess, is placing a loop here in order to change this
        # example line into a list of options, but I can't figure out how
        1 ) echo "You picked $opt which is option $REPLY";;    

    $(( ${#options[@]}+1 )) ) echo "Exiting"; break;;
    *) echo "Invalid option. Try another one.";continue;;

    esac

done

任何提示都是最受欢迎的。提前致谢。

4

2 回答 2

0

定义处理每种情况的函数。代替 switch case 中的那些 echo 语句,使用所有必需的参数调用适当的函数。

于 2012-06-25T21:28:06.710 回答
0

我建议处理“退出”和“键入新站点”的案例以及在任何选定目录上执行所有操作的一般案例。

以下内容略显骇人听闻。

未经测试。

#!/bin/bash

cd /var/www
options=( $(find . -maxdepth 1 -type d -printf '%P\n') )
lastdirindex=${#options[@]}

saveIFS=$IFS
IFS='|'
pattern="^(${options[*]})$" # create a regex that looks like: ^(dir1|dir2|dir3)$
IFS=$saveIFS

options+=("type a new site")
newindex=${#options[@]}
options+=("Quit")
quitindex=${#options[@]}

processchoice () { echo "Do stuff with choice $1 here"; }

title="Website developing script"
prompt="Choose the site:"

echo "$title"
PS3="$prompt "

select opt in "${options[@]}"; do 
    case $([[ $REPLY =~ $pattern ]] && echo 1 || echo "$REPLY") in
        1          )  echo "You picked $opt which is option $REPLY"; processchoice "$REPLY";;
        $newindex  )  read -r -p "Enter a new site" newsite; processchoice "$newsite";;
        $quitindex )  echo "Exiting"; break;;
        *          )  echo "Invalid option. Try another one."; continue;;
    esac
done
于 2012-06-26T04:09:41.473 回答