File: post-install-message.sh

package info (click to toggle)
tuxpaint-stamps 2006.10.21-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 22,728 kB
  • ctags: 15
  • sloc: makefile: 189; python: 94; sh: 32; objc: 7
file content (14 lines) | stat: -rwxr-xr-x 413 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

echo
echo "All done! Now (preferably NOT as 'root' superuser),"
echo "you can type the command 'tuxpaint' to run the program and"
echo "see these stamps!!!"
echo
echo "For more information, see the 'tuxpaint' man page,"
echo "run 'tuxpaint --usage' or see README.txt"
echo
if [ -x "`which tuxpaint`" ]; then echo "Enjoy!"; else \
	echo "(Tux Paint doesn't appear to be installed, though!!!)"; fi
echo