我正在编写一个脚本,以便对本地机器上的开发站点执行一系列操作。这个想法是列出“/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
任何提示都是最受欢迎的。提前致谢。