shellでfileの存在を確認するにはtest
commandを-e
optionを実行します。このコマンドはshell のビルトインコマンドになっていて、同じ処理をする[
と]
commandのほうが、直感敵な記述ができます。
if [ -e $file ]; then
eho "exists file"
fi
if [ ! -e $file ]; then
eho "not exists file"
fi
shellでfileの存在を確認するにはtest
commandを-e
optionを実行します。このコマンドはshell のビルトインコマンドになっていて、同じ処理をする[
と]
commandのほうが、直感敵な記述ができます。
if [ -e $file ]; then
eho "exists file"
fi
if [ ! -e $file ]; then
eho "not exists file"
fi