allow empty file

This commit is contained in:
ander 2021-09-14 21:54:45 +03:00
parent fcd730f905
commit d7fdc8006f
No known key found for this signature in database
GPG Key ID: 0A2971E562D618F3
1 changed files with 1 additions and 7 deletions

View File

@ -8,14 +8,8 @@ else
fi
if [ -f "$file" ]
then
if [ -s "$file" ]
then
cat "$file"
else
echo "$file is empty" >&2
exit 1
fi
else
echo "$file do not exist" >&2
exit 1