Skip to content

Instantly share code, notes, and snippets.

@aadouglass
Created March 28, 2016 15:41
Show Gist options
  • Save aadouglass/6e54cc470cfa4794586b to your computer and use it in GitHub Desktop.
Save aadouglass/6e54cc470cfa4794586b to your computer and use it in GitHub Desktop.
#!/bin/bash
bashSource="data/blah.txt"
if [ -e bashSource ]; then
echo "File exists"
else
echo "File does not exists"
fi
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment