Created
March 9, 2020 21:09
-
-
Save joshcanhelp/839ba258cc6ba46533cbec5886590ddc to your computer and use it in GitHub Desktop.
Deletes unused files
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 IFS= read -r -d '' file | |
do | |
if grep -qr "$file" ../content/md | |
then echo "Keeping $file"; | |
else rm "$file"; | |
fi | |
done < <(find _images -type f -print0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment