Adds print-files-not-in-urls-txt.sh

This commit is contained in:
2025-07-06 20:18:22 -03:00
parent d8d4b83492
commit 437007ebd2

View File

@@ -0,0 +1,7 @@
find * -maxdepth 0 -type f -not -name 'urls.txt' -exec sh -c '
for file; do
if ! grep -q "$file" urls.txt; then
echo "$file"
fi
done
' sh {} +