FILE=/etc/resolv.conf
if [ -f "$FILE" ]; then
echo "$FILE exists."
else
echo "$FILE does not exist."
fi
#!/bin/bash
if [ -e x.txt ]
then
echo "ok"
else
echo "nok"
fi
FILE=/etc/resolv.conf
if [ -f "$FILE" ]; then
echo "$FILE exists."
fi
[ -f /etc/resolv.conf ] && echo "$FILE exists."