#!/usr/bin/sh PATH=/usr/bin:/bin:/sbin; export PATH # Terminal must be dtterm # TERM=dtterm # setaf for foreground color, setab for background # bla="$( tput setaf 0 )" red="$( tput setaf 1 )" gre="$( tput setaf 2 )" yel="$( tput setaf 3 )" blu="$( tput setaf 4 )" pur="$( tput setaf 5 )" cya="$( tput setaf 6 )" whi="$( tput setaf 7 )" off="$( tput sgr0 )" print "${yel}Yellow submarine${off}" print "${gre}Green grass${off}" print "${pur}Purple is ${red}RED ${cya}& ${blu}BLUE" print "Nothing is just ${bla}BLACK ${off}& and ${whi}WHITE" # Turn off all special effects (normal mode) # print "$off" exit 0