SH atau bash validasi jika tidak ada file

FILE=/etc/docker
if [ ! -f "$FILE" ]; then
    echo "$FILE does not exist."
fi
Evil Echidna