SHELL菜单select练习

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SHELL菜单select练习相关的知识,希望对你有一定的参考价值。

#!/bin/bash
echo "please choose your profession?"
PS3="please choose the number : "

function a(){
	echo "this is funciton a"
}
function b(){
	echo "this is function b"
}
n=0
select var in "worker" "dock" "teacher"
do
	case $var in 
	worker)
	a
	;;
	dock)
	b
	;;
	*)
	esac
	echo "the choose num is \$REPLY is $REPLY"
	echo "your preofession is $var"
	let n++
	if [ $n -gt 2 ] 
	then
		break
	fi
done


以上是关于SHELL菜单select练习的主要内容,如果未能解决你的问题,请参考以下文章

shell练习

Shell练习小程序练习练习——九九乘法表

shell 练习1编写Shell条件句练习

每日一道shell脚本练习(01)

Shell脚本练习

shell脚本进阶练习题---理解和练习