引数の正しい数(1つの引数)を確認するにはどうすればよいですか。誰かが正しい数の引数を渡さずにスクリプトを呼び出そうとし、コマンドライン引数が実際に存在し、ディレクトリであることを確認する場合。
#!/bin/sh
if [ "$#" -ne 1 ] || ! [ -d "$1" ]; then
echo "Usage: $0 DIRECTORY" >&2
exit 1
fi
変換:引数の数が(数値的に)1に等しくない場合、または最初の引数がディレクトリでない場合、使用状況をstderrに出力し、失敗ステータスコードで終了します。
よりわかりやすいエラー報告:
#!/bin/sh
if [ "$#" -ne 1 ]; then
echo "Usage: $0 DIRECTORY" >&2
exit 1
fi
if ! [ -e "$1" ]; then
echo "$1 not found" >&2
exit 1
fi
if ! [ -d "$1" ]; then
echo "$1 not a directory" >&2
exit 1
fi
猫script.sh
var1=$1
var2=$2
if [ "$#" -eq 2 ]
then
if [ -d $var1 ]
then
echo directory ${var1} exist
else
echo Directory ${var1} Does not exists
fi
if [ -d $var2 ]
then
echo directory ${var2} exist
else
echo Directory ${var2} Does not exists
fi
else
echo "Arguments are not equals to 2"
exit 1
fi
以下のように実行します-
./script.sh directory1 directory2
出力は次のようになります-
directory1 exit
directory2 Does not exists
コマンドラインで渡される引数の総数は "$#
"シェルスクリプト名の例で確認できますhello.sh
sh hello.sh hello-world
# I am passing hello-world as argument in command line which will b considered as 1 argument
if [ $# -eq 1 ]
then
echo $1
else
echo "invalid argument please pass only one argument "
fi
出力はhello-world
になります