Skip to content

Instantly share code, notes, and snippets.

@alexmagaddino
Created January 17, 2025 20:06
Show Gist options
  • Select an option

  • Save alexmagaddino/eb3c051f576ded3b0ab3fd98c7ddf2d3 to your computer and use it in GitHub Desktop.

Select an option

Save alexmagaddino/eb3c051f576ded3b0ab3fd98c7ddf2d3 to your computer and use it in GitHub Desktop.
Chess PNG from Italian to english annotation
#!/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