首页 > 系统服务 > 详细

Linux bash初学-case语句

时间:2019-03-24 12:21:27      阅读:148      评论:0      收藏:0      [点我收藏+]

编写一个简单的bash脚本hello.sh,提供如下特性:

1. 当运行./hello.sh student , 输出为 teacher

2. 当运行./hello.sh teacher, 输出为 student

3. 当没有任何参数,或参数不是teache 或者 student 时,在控制台打印输出如下信息:

./hello.sh student | teacher

#!/bin/bash
case $1 in
    teacher)
        echo "student"
    ;;
    student)
        echo "teacher"
    ;;
    *)
        echo "./hello.sh student | teacher"
    ;;
esac

 

xiejiaohui-2:~ xiejiaohui$ vim hello.sh 

xiejiaohui-2:~ xiejiaohui$ ./hello.sh

./hello.sh teacher | student

xiejiaohui-2:~ xiejiaohui$ ./hello.sh student

teacher

xiejiaohui-2:~ xiejiaohui$ ./hello.sh teacher

student

xiejiaohui-2:~ xiejiaohui$

 

Linux bash初学-case语句

原文:https://www.cnblogs.com/xiejh/p/10587501.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!