sh ou bash valider si le fichier n'existe pas

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