徐小玉的博客。
发布时间:2017-08-13 22:34:21
译者序毫无疑问,UNIX/Linux最重要的软件之一就是shell,目前最流行的shell被称为Bash(Bourne Again Shell),几乎所有的Linux和绝大部分的UNIX都可以使用Bash。作为系统与用户之间的交互接口,shell几乎是你在UNIX工作平台上最亲密的朋友,因此,学好shell,是学习Linux/UNIX的的开始,并且它会始终伴随你的工作学习.........【阅读全文】
发布时间:2016-07-08 14:58:25
echo "Enter a number."read numberif expr "$number" + 0 > /dev/null 2>&1 then # 如果+0 有返回值,说明输入的是数字,否则不是。: else echo "You did not enter an integer value." 1782 exit 1fi......【阅读全文】
发布时间:2016-07-08 13:52:01
String, Integer, and File TestingTest OperatorTest ForString Teststring1 = string2String1 is equal to String2 (space surrounding = required).........【阅读全文】
发布时间:2016-07-07 15:18:30
1:判断缺少参数:name=${1:?"requires an argument" }echo Hello $name......【阅读全文】