Files
svr/usr/bin/prompt_dir
T

12 lines
174 B
Bash
Raw Normal View History

2026-02-11 14:16:14 +01:00
#!/usr/bin/env bash
root="${1:-.}"
find "$root" -type f -print0 |
while IFS= read -r -d '' file; do
printf -- "---\n%s\n-\n" "$file"
cat -- "$file"
printf "\n"
done