2020年2月5日

shell case

摘要: case 的格式为case %variable in"value1") expression;;"value2") expression;;"value3") expression;;*) #如果变量的值都不是以上的值,执行该条语句 expressionesac以case开头,以esac结尾每个分支程序之后要以";;"(双分号)结尾 阅读全文

posted @ 2020-02-05 23:43 哆啦只是个梦哦 阅读(124) 评论(0) 推荐(0) 编辑

shell read命令

摘要: read命令 有四个选项 –p (提示语句) –n (接收的字符个数) –t (等待时间) –s (不回显)基本读取read命令接收键盘的输入,得到输入后,将数据存放在一个标准变量中#!/usr/bin/bashread -p "please input youe name:" name;echo "hello,$name,welcome to this program!";上面例子中只有一个... 阅读全文

posted @ 2020-02-05 23:37 哆啦只是个梦哦 阅读(384) 评论(0) 推荐(0) 编辑

导航