Linux bash 脚本语言

来源:互联网 发布:人的音域 知乎 编辑:程序博客网 时间:2024/05/01 03:15
bash 中 检测文件是否存在 if bash file 之间的关系 if [ -f filename ]  测试是否是普通文件if [ -z filename ]  测试文件是否为空if [ -r filename ]  测试文件是否可读if [ -w filename ]  测试文件是否可写还有,就是if then else fi 是其完整的结构,还可以定义函数http://www.cnblogs.com/weeky/archive/2013/02/28/2936915.html这个链接讲的比较详细,在这里都有的...又了解了一些如下的知识:$?   Last command or function's return value.参考如下的代码得到...$n        $1 the first parameter,$2 the second...$#        The number of command-line parameters.$0        The name of current program.$?        Last command or function's return value.$$        The program's PID.$!        Last program's PID.$@        Save all the parameters.
0 0
原创粉丝点击