Updated aperture and added funperture.

master
parent 67c9b993b5
commit 6bafc5e29c

@ -2,7 +2,7 @@
### Bash ### Bash
**aperture** **aperture** <sub>and funperture</sub>
A simple little script that echos one of two things. Either the aperture logo, or how the aperture logo got into the script. I like it. A simple little script that echos one of two things. Either the aperture logo, or how the aperture logo got into the script. I like it.
**backupProgramFiles.sh** **backupProgramFiles.sh**

@ -2,10 +2,11 @@
if [ ! -z $1 ]; then if [ ! -z $1 ]; then
cat << EOF cat << EOF
A modification of the Aperture Science logo from the game The Aperture Science logo from the game Portal, copied
Portal, copied by hand from a screenshot by Jamison Judd by hand from a screenshot, by Jamison Judd (link below)
(link below). The modifications I made were to clean it I modified the ASCII text to clean up the dividers
up to make the spaces between the chevrons more distinct. between the chevrons and changed a few other symbols
to look less bland or rigid.
http://archive.jamisonjudd.com/aperture-science-logo/ http://archive.jamisonjudd.com/aperture-science-logo/
EOF EOF
@ -18,7 +19,7 @@ cat << EOF
,/X+ +M@@M@MM%/ %HMMM@X/, ,/X+ +M@@M@MM%/ %HMMM@X/,
-+@MM; %M@@MH+ XMMMM@MMMM@+- -+@MM; %M@@MH+ XMMMM@MMMM@+-
;@M@@M/ XM@X;. +XXXXXHHH@M@M#@/. ;@M@@M/ XM@X;. +XXXXXHHH@M@M#@/.
%MM@@MH @%= __._...__. %MM@@MH @%= _,_.,_.._.
#@@@MX. -%HX#$%%%:; #@@@MX. -%HX#$%%%:;
=- @M@M$ .;@MMMM@MM: =- @M@M$ .;@MMMM@MM:
X@\ @MM/ +MM@@@M$ X@\ @MM/ +MM@@@M$
@ -26,11 +27,11 @@ cat << EOF
,@@@MMX /H @M@M= ,@@@MMX /H @M@M=
.H@@@@M@+ %MM+ %#$. .H@@@@M@+ %MM+ %#$.
/MMMM@MMH/. XM@MH ; /MMMM@MMH/. XM@MH ;
/%+%%XHH@$= , .H@@@@MX #%+%%XHH@$= , .H@@@@MX
.___..___.__. -%H ,@@@@@MX, ..__.,,__._,. -%H ,@@@@@MX,
.%MM@@@HHHXX&#$%+ .:#MMX =M@@MM%. .%MM@@@HHHXX&#$%+ .:#MMX =M@@MM%.
=XMMM@MM@MM#H; +HMM@M+ /MMMX= =XMMM@MM@MM#H; +HMM@M+ /MMMX=
=%@M@M#@$ &@MM@@@M; %M%= =%@M@M#@$ &@MM@@@M; %M%=
,:+$+- H#MMMMMMM@= =, ,:+$+- H#MMMMMMM@/ =,
++%%%%+/:-. ++%%%%+/:-.
EOF EOF

@ -0,0 +1,65 @@
#!/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
Loading…
Cancel
Save