- #!/bin/bash
- __PVERSION__="1.0"
- echo Installing TrueType Fonts Quick Installer v$__PVERSION__...
- if gcc ttfqi.c -o ttfqi; then
- if sudo mv -f ttfqi /usr/bin/ttfqi; then
- echo "OK."
- else
- echo "Installation failed! (are you root?)"
- fi
- else
- echo "Compilation failed! :c"
- fi
|