... ## PARA LETRAS FIGLET EN PERL (SOLAMENTE) export FIGLIB=$HOME/path/where/you/placed/your/fonts:$HOME/another/path/with/fonts ## [figlet "text" (name ffont) ] writes sent msg in big (optional: chooses a ffont) figlet() { local que=$1 local fu=timesofl if [ ! -z "$2" ] then local fu=$2 fi; if [ -n "$que" ] then perl -I$HOME/path/to/installed/FIGlet.pm -MText::FIGlet -e 'print Text::FIGlet->new( -f=>$ARGV[0] )->figify( -A=>$ARGV[1] )' "$fu" "$que" fi; } ... #### figlet "HAPPY 2006" #### figlet "HAPPY 2006" avatar