加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Linux > 正文

Linux bash初学-case语句

发布时间:2020-12-14 01:51:41 所属栏目:Linux 来源:网络整理
导读:编写一个简单的bash脚本hello.sh,提供如下特性: 1. 当运行./hello.sh student,输出为 teacher 2. 当运行./hello.sh teacher,输出为 student 3. 当没有任何参数,或参数不是teache 或者 student 时,在控制台打印输出如下信息: ./hello.sh student | teach

编写一个简单的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$

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读