Linux shell脚本学习 :shell脚本小练习小工具汇总 函数 #!/bin/bash funWithParam(){ echo "The first parameter is $1 !" echo "The second parameter is $2 !... 03月06日 494 views 评论 阅读全文
Linux shell脚本学习:流程控制if/for/while/case/break等等 这一次我们的主题是shell脚本中的流程控制,gif动图所见即所得,语法如下。 if else #!/bin/bash if < $1 == $2 >;then echo "a == b" elif ... 03月06日 517 views 评论 阅读全文