check if a file exists

if [ -e "db/restore-db.sh" ]; then
  echo "Yes"
else
  echo "No"
fi