Created
March 19, 2015 04:19
-
-
Save welshstew/9df7f1d1baaa8340b625 to your computer and use it in GitHub Desktop.
bash one-liner to find items from the names in a file
This file contains hidden or 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
while read line; do find . -name "$line" | xargs ls -l; done < items.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment