0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ファイル(ディレクトリ)の存在チェック Linux

Posted at

#ファイル(ディレクトリ)の存在チェック Linux

自分で今、使う予定はないけれど、いつか使うかもしれないのでMemoしておきたい。

file_check.sh
while [ -e $FILE]
do
    sleep 60
done

[ -e $FILE]だと、ファイルが存在するかぎり処理を繰り返す。
[ ! -e $FILE]だと、ファイルが存在しない限り繰り返す。
この場合は、待ち続ける。

-eでファイルの存在チェック、-dだとディレクトリのチェックになる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?