「ShellScript入門」関数(function)のサンプル

2021年2月26日

書式
関数名() {
//処理コード
}
使用例

#!/bin/sh

#関数を指定
testFuncA () { 
    echo "関数A 1111"
}
testFuncB() {
    echo "関数B 引数1:$1 引数2:$2"
}

#関数を呼び出します
testFuncA
testFuncB 12 34

実行結果
# sh test007.sh
関数A 1111
関数B 引数1:12 引数2:34

shellscript

Posted by arkgame