install 318 B

12345678910111213
  1. #!/bin/bash
  2. __PVERSION__="1.0"
  3. echo Installing TrueType Fonts Quick Installer v$__PVERSION__...
  4. if gcc ttfqi.c -o ttfqi; then
  5. if sudo mv -f ttfqi /usr/bin/ttfqi; then
  6. echo "OK."
  7. else
  8. echo "Installation failed! (are you root?)"
  9. fi
  10. else
  11. echo "Compilation failed! :c"
  12. fi