Initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
while IFS= read -r -d '' file; do
|
||||
if grep -Iq . "$file"; then
|
||||
echo "===== $file ====="
|
||||
cat "$file"
|
||||
echo -e "\n"
|
||||
fi
|
||||
done < <(find . -type f -print0)
|
||||
|
||||
Reference in New Issue
Block a user