.sh Skript: Überprüfen Sie, ob Datei vorhanden ist

#!/bin/bash
if [ -e x.txt ]
then
    echo "ok"
else
    echo "nok"
fi
Mckynde