Skip to content

Instantly share code, notes, and snippets.

@cfljam
Created June 10, 2018 04:49
Show Gist options
  • Select an option

  • Save cfljam/bf813edd04271fac43f0010d72cacd0c to your computer and use it in GitHub Desktop.

Select an option

Save cfljam/bf813edd04271fac43f0010d72cacd0c to your computer and use it in GitHub Desktop.
Check for file existence in BASH using a listfile
for FILE in $(cat my_FOF); do if [ -e $FILE ]; then echo $FILE "exists"; fi; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment