Created
August 7, 2017 20:20
-
-
Save dman777/7cb637eff36a2160a3d49e0731ec4615 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
while read -r file; | |
do | |
grep -l "$file" -R * | grep -v MarketPlaceLog | grep -v cache > /dev/null | |
if [ $? -eq 0 ] | |
then | |
echo $file | |
fi | |
done < <(ls ./images) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment