1
0
Fork 0
dotfiles/.local/bin/scripts/caf
2026-01-06 07:36:53 +03:00

10 lines
151 B
Bash
Executable file

#!/bin/bash
while [ "$#" -gt 0 ]; do
echo "### $1:"
echo '```'
cat "$1"
echo '```'
[ "$#" -gt 1 ] && printf "\n\n"
shift
done