SHELL菜单select练习

前端之家收集整理的这篇文章主要介绍了SHELL菜单select练习前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#!/bin/bash
echo"pleasechooseyourprofession?"
PS3="pleasechoosethenumber:"

functiona(){
	echo"thisisfuncitona"
}
functionb(){
	echo"thisisfunctionb"
}
n=0
selectvarin"worker""dock""teacher"
do
	case$varin
	worker)
	a
	;;
	dock)
	b
	;;
	*)
	esac
	echo"thechoosenumis\$REPLYis$REPLY"
	echo"yourpreofessionis$var"
	letn++
	if[$n-gt2]
	then
		break
	fi
done
原文链接:https://www.f2er.com/bash/388853.html

猜你在找的Bash相关文章