Files
chess-games/add-timectl.bash
2024-01-22 07:30:05 +01:00

9 lines
216 B
Bash
Executable File

#!/usr/bin/env bash
str='[TimeControl "3600"]'
str='[TimeControl "40/7200:20/3600:3600"]'
filein="$1"
fileout="$filein.new"
echo "in=$filein out=$fileout"
sed -e '/^\[Black ".*"\]/a '"$str" < "$filein" > "$fileout"