封装了函数,函数中使用case语句,函数的调用方法也比较典型
#/bin/sh
iscontinue()
{
while true
do
echo -n "Continue?(Y/N)"
read ANSWER
case $ANSWER in
[Yy]) return 0;;
[Nn]) return 1;;
*) echo "Answer Y or N";;
esac
done
}
if iscontinue
then
cp -f a.txt b.txt
fi
阅读(1237) | 评论(0) | 转发(0) |