Verifique se o arquivo existe Bash
FILE=/etc/resolv.conf
if [ -f "$FILE" ]; then
echo "$FILE exists."
else
echo "$FILE does not exist."
fi
Super Dude
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
if [[ -f $FILE1 ]] && [[ -f $FILE2 ]]; then
echo "OK"
fi