linux case 语句的错误,linux bash shell中case语句的实例

  • Post author:
  • Post category:linux


bash case语句的例子。

分享一段bash shell代码,对于学习bash的同学理解case语句的用法,会有帮助。

例子:

#!/bin/bash

##

# Program:

# File operation

# 1.) Open file 2.) Display file 3.) Edit file 4.) Delete file

# site: WWW.JB51.NET

PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin

export PATH

echo “———————————”

echo “List of item to operate file -”

echo “———————————”

echo “1). Open a file -”

echo “2). Display a file -”

echo “3). Edit a file -”

echo “4). Delete a file -”

echo “———————————”

read select

case $select in

1)

echo “do open file operation”

2)

echo “do display a file operation”

3)

echo “do edit a file operation”

4)

echo “do delete a file operation”

*)

echo “There is nothing to do!”

exit 1

esac

总结

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。

小编个人微信号 jb51ccc

喜欢与人分享编程技术与工作经验,欢迎加入编程之家官方交流群!