This commit is contained in:
parent
7e5d880156
commit
d93f63cf82
40 changed files with 448 additions and 649 deletions
7
.local/bin/scripts/cat-files
Executable file
7
.local/bin/scripts/cat-files
Executable file
|
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
while IFS=$'\n' read -r file; do
|
||||
echo "$file:"
|
||||
cat "$file"
|
||||
printf "\n\n"
|
||||
done < <(find "${1?}" -type f)
|
||||
Loading…
Add table
Add a link
Reference in a new issue