【使用例紹介】条件を満たさない事を判定:!【シェルスクリプト】
備忘録になります。
$ ls
wrk.sh
$ cat wrk.sh
if [ ! -e ./wrk.txt ]; then
echo "wrk.txt is not exist."
fi
$ ./wrk.sh
wrk.txt is not exist.
関連リンク
備忘録になります。
$ ls
wrk.sh
$ cat wrk.sh
if [ ! -e ./wrk.txt ]; then
echo "wrk.txt is not exist."
fi
$ ./wrk.sh
wrk.txt is not exist.