摘要:
. filename # 注意点号(.)和文件名中间有一空格 或 source filename 参考:Shell 文件包含 | 菜鸟教程 (runoob.com) 阅读全文
摘要:
命令说明 command > file 将输出重定向到 file。 command < file 将输入重定向到 file。 command >> file 将输出以追加的方式重定向到 file。 n > file 将文件描述符为 n 的文件重定向到 file。 n >> file 将文件描述符为 阅读全文
摘要:
1、定义函数 [ function ] funname [()] { action; [return int;] } 注: 可以带function fun() 定义,也可以直接fun() 定义,不带任何参数。 参数返回,可以显示加:return 返回,如果不加,将以最后一条命令运行结果,作为返回值。 阅读全文
摘要:
参考:Linux 命令大全 | 菜鸟教程 (runoob.com) 阅读全文
摘要:
1、if else if condition then command1 command2 ... commandN fi 2、if else-if else if condition1 then command1 elif condition2 then command2 else command 阅读全文
摘要:
test 命令用于检查某个条件是否成立,它可以进行数值、字符和文件三个方面的测试。 1、数值测试 参数说明 -eq 等于则为真 -ne 不等于则为真 -gt 大于则为真 -ge 大于等于则为真 -lt 小于则为真 -le 小于等于则为真 num1=100 num2=100 if test $[num 阅读全文