Skip to content

Instantly share code, notes, and snippets.

@akilism
Created August 18, 2016 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akilism/0e390ee8e6850b5ad8e9409d7d54ddca to your computer and use it in GitHub Desktop.
Save akilism/0e390ee8e6850b5ad8e9409d7d54ddca to your computer and use it in GitHub Desktop.
find files in directories based on a file of filenames
for FILE in $(cat filenames.txt); do find ./ -iname $FILE; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment