shell之函數詳解

shell之函數詳解 1.shell函數語法web 其標準寫法爲: function 函數名() { #<==推薦的書寫函數的方法(帶括號) 指令…… return n } 簡化寫法1: function 函數名{ #<==不推薦使用此方法(無括號) 指令…… return n } 簡化寫法2: 函數名() { #<==不用function的方法 指令…… return n } 2
相關文章
相關標籤/搜索