Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下のように「/bin/bash」を使用して呼び出す必要があるmyscript.shにパラメーターを渡す方法
/bin/bash -c myscript.sh
./myscript.sh arg1 arg2 arg3
また
/bin/bash myscript.sh arg1 arg2 arg3
-c(オプションは必要ありません)
-c
スクリプト内では、次の方法でそれらを取得できます。
var1=$1 var2=$2