Browse Source

remove space EOL and remove first empty line

main
emile 3 weeks ago
parent
commit
2b1f5d0d6a
  1. 10
      padascii2uniascii.sh

10
padascii2uniascii.sh

@ -15,18 +15,20 @@ sed -i '/^\/\/*/d' export.txt
# remove empty lines
sed -i '/^[[:space:]]*$/d' export.txt
## homogénéiser les pixels vides (points, espaces, tirets)
## ???
# add tabs to each lines starting by - or #
sed -i 's/^[-|#]/\t&/' export.txt
# add newline before glyph id
sed -i '/:$/i\ ' export.txt
# remove first line
sed -i '1d' export.txt
# remove space EOL
sed -i 's/\s*$//' export.txt
# remove \n after glyph id
sed -z 's/:\n/:/g' export.txt
# the output should now be ready to use with the unifont utility "hexdraw"
# hexdraw:convert a GNU Unifont .hex file to and from an ASCII text file

Loading…
Cancel
Save