#!/bin/bash if [ ! -z $1 ]; then cat << EOF The Aperture Science logo from the game Portal, copied by hand from a screenshot, by Jamison Judd (link below) I modified the ASCII text to clean up the dividers between the chevrons and changed a few other symbols to look less bland or rigid. http://archive.jamisonjudd.com/aperture-science-logo/ (this script was just for funsies to emulate that slow loading from old discs) EOF exit 0 fi trap ctrl_c INT function ctrl_c { tput cnorm exit 1 } tput civis echo " .,-:;//;:=," sleep .05 echo " . :H@@@MM@M#H/ ,+%;," sleep .05 echo " ,/X+ +M@@M@MM%/ %HMMM@X/," sleep .75 echo " -+@MM; %M@@MH+ XMMMM@MMMM@+-" sleep .15 echo " ;@M@@M/ XM@X;. +XXXXXHHH@M@M#@/." sleep .05 echo " %MM@@MH @%= _,_.,_.._." sleep .15 echo " #@@@MX. -%HX#$%%%:;" sleep .75 echo " =- @M@M$ .;@MMMM@MM:" sleep .05 echo " X@\ @MM/ +MM@@@M$" sleep .05 echo ",@M@H: @: X#@@@@-" sleep .05 echo ",@@@MMX /H @M@M=" sleep .05 echo ".H@@@@M@+ %MM+ %#$." sleep .05 echo " /MMMM@MMH/. XM@MH ;" sleep .15 echo " #%+%%XHH@$= , .H@@@@MX " sleep .15 echo " ..__.,,__._,. -%H ,@@@@@MX," sleep .05 echo " .%MM@@@HHHXX&#$%+ .:#MMX =M@@MM%." sleep .05 echo " =XMMM@MM@MM#H; +HMM@M+ /MMMX=" sleep .05 echo " =%@M@M#@$ &@MM@@@M; %M%=" sleep .05 echo " ,:+$+- H#MMMMMMM@/ =," sleep .05 echo " ++%%%%+/:-." tput cnorm