Return to Snippet

Revision: 42624
at March 8, 2011 07:04 by krustyflakes


Initial Code
FILE="/etc/hosts"
if [ -f $FILE ]; then
  echo "File ${FILE} exists"
else
  echo "File ${FILE} does NOT exists"
fi

Initial URL

                                

Initial Description

                                

Initial Title
Check if a file exists

Initial Tags

                                

Initial Language
Bash