pgn_to_gif.sh - chess-puzzles - chess puzzle book generator | |
git clone git://git.codemadness.org/chess-puzzles | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
pgn_to_gif.sh (163B) | |
--- | |
1 #!/bin/sh | |
2 # Dependencies: pgn-extract for PGN to UCI, | |
3 # see moves.sh for further dependencies. | |
4 | |
5 moves="$(pgn-extract --notags -Wuci)" | |
6 ./moves.sh startpos "$moves" |