shell中的函數,shell中的數組,告警系統需求分析

shell中的函數 函數就是把一段代碼整理到了一個小單元中,並給這個小單元起一個名字,當用到這段代碼時直接調用這個小單元的名字即可。格式: function f_name() { command } 函數必須要放在最前面 示例1 #!/bin/bash inp (){ echo "the first is $1" echo "the second is $2" echo "the third is
相關文章
相關標籤/搜索