Guest User

Untitled

a guest
Oct 21st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. chars=$(cat ../10.txt | fold -w1 | sort | uniq)
  4.  
  5. for c in $chars; do
  6. convert -background none -fill red -font /opt/local/fonts/lyshie/TW-Kai-98_1.ttf -pointsize 64 label:"$c" "$c.png"
  7. done
Add Comment
Please, Sign In to add comment