mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 11:42:29 +00:00
7 lines
132 B
Bash
Executable File
7 lines
132 B
Bash
Executable File
#!/usr/bin/bash
|
|
set -x
|
|
find ./ -maxdepth 2 -name "*.html" | while read fname; do
|
|
sed -i -e '$a\\n' "$fname"
|
|
#echo "$fname"
|
|
done
|