ファイルの存在判定
- ファイルが存在する場合に実行
if [ -e ${file} ];then echo hello, world fi
- ファイルが存在しない場合に実行
if [ ! -e ${file} ]; then echo hello, world fi
!
を条件の先頭につける
if [ -e ${file} ];then
echo hello, world
fi
if [ ! -e ${file} ]; then
echo hello, world
fi
!
を条件の先頭につける