Created
January 17, 2025 20:06
-
-
Save alexmagaddino/eb3c051f576ded3b0ab3fd98c7ddf2d3 to your computer and use it in GitHub Desktop.
Chess PNG from Italian to english annotation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # File input | |
| cat "$1" > "tmp.txt" | |
| # Translate italian Chess PNG into english Chess PNG | |
| sed -i'.bak' 's/R/K/g' "tmp.txt" | |
| sed -i'.bak' 's/D/Q/g' "tmp.txt" | |
| sed -i'.bak' 's/T/R/g' "tmp.txt" | |
| sed -i'.bak' 's/A/B/g' "tmp.txt" | |
| sed -i'.bak' 's/C/N/g' "tmp.txt" | |
| mv "tmp.txt" "$1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment