Shell Function 函式

函式命名

function function_name {
   command...
}
function_name () {
   command...
}

參數

shell 使用 $1$2 去接收參數資料

foo() {
    echo "Parameter #1 is $1"
}
# Parameter #1 is KJ
foo KJ

參考資料

results matching ""

    No results matching ""