【回答】
ファイルサイズが 0 かどうかチェックする方法を紹介します。
test コマンドを -s オプションで実行してチェックします。
以下のサンプルでは /tmp/test1 ファイルのサイズが 0 か確認しています。
if test -s /tmp/test1
then
echo size is not 0
else
echo size is 0 or fine does not exists
fi
(*)本ページは Redhat Enterprise Linux 6以後を想定しています。
最終更新日:2015/10/21
[Redhat Enterprise linux 6(EL) FAQ トップへ]
[FAQ CENTER トップ]