linux-tutorial/codes/shell/示例脚本/逻辑控制/select-demo.sh

15 lines
340 B
Bash
Raw Normal View History

2019-10-15 14:17:17 +08:00
#!/usr/bin/env bash
PS3="Choose the package manager: "
select ITEM in bower npm gem pip
do
echo -n "Enter the package name: " && read PACKAGE
case ${ITEM} in
bower) bower install ${PACKAGE} ;;
npm) npm install ${PACKAGE} ;;
gem) gem install ${PACKAGE} ;;
pip) pip install ${PACKAGE} ;;
esac
break # 避免无限循环
done