Created
January 23, 2015 20:05
-
-
Save wem3/fe71f80f447e87768a31 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# find specified file or crash out | |
{ | |
if [ ! -f /path/file ]; then | |
echo "File not found!" | |
exit 0 | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment