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.
2 つの引数を取るスクリプトがあるとします。たとえば、次の形式で 1 つの引数または 2 つ以上の引数があるかどうかを確認する方法はありますか。
if [ check if arguments don't equal 2 ]; then echo Too many arguments exit 1 fi
if [ $# -ne 2 ]; then # Number of arguments was not 2 fi
この変数$#は、渡された引数の数を保持します。
$#