shell script to check if file exists code example
Example 1: .sh script: check if file exist
#!/bin/bash
if [ -e x.txt ]
then
echo "ok"
else
echo "nok"
fi
Example 2: bash script if file exists
[ -f /etc/resolv.conf ] && echo "$FILE exists."