Compare commits

..

3 commits

Author SHA1 Message Date
Gesina Schwalbe
d8059adee6 added new licence information 2015-02-13 22:08:04 +01:00
Gesina Schwalbe
de1377c672 added valentine-art in script 2015-02-13 22:06:55 +01:00
Gesina Schwalbe
fce856d7da added valentin picture 2015-02-13 22:04:16 +01:00
3 changed files with 21 additions and 1 deletions

View file

@ -10,3 +10,4 @@ christmastree: jgs, from http://chris.com/ascii/index.php?art=holiday/christmas/
pizza: http://www.ascii-art.de/ascii/pqr/pizza.txt
heart: Norman Veilleux/Ryan Harding, from http://www.ascii-fr.com/-Hearts-.html
birthdaycake: http://chris.com/ascii/index.php?art=events/birthday
valentine: http://loveascii.com/valentines2.html

15
assets/valentine Normal file
View file

@ -0,0 +1,15 @@
.-"""-. .-"""-.
/ `..' \
| |
| H A P P Y |
\ VALENTINE'S /
__\ D A Y ! /
_ / |`\ /'
| \ \/_/ `\ /'
\_\| / __ `\ /'
\/_/__\ `\/' .--='/~\
____,__/__,_____,______)/ /{~}}}
-,-----,--\--,-----,---,\'-' {{~}}
__/\_ '--=.\}/
/_/ |\\
\/

View file

@ -18,6 +18,7 @@ help() {
echo " -b Send happy birthday"
echo " -c Send merry christmas"
echo " -n Send a happy new year"
echo " -v Send a happy valentine's day"
echo " -m <addr> Receivers address (non-optional)"
echo " -s <addr> Senders address, defaults to user@host"
echo " -h Print this help-message"
@ -29,7 +30,7 @@ if [ ! $1 ]; then
exit 1
fi
while getopts "plbcnhm:s:" opt; do
while getopts "plbcnhmv:s:" opt; do
case ${opt} in
p )
: ${PIZZAART:="pizza"}
@ -46,6 +47,9 @@ while getopts "plbcnhm:s:" opt; do
n )
: ${PIZZAART:="new_year"}
;;
v )
: ${PIZZAART:="valentine"}
;;
m )
PIZZARCV="${OPTARG}"
;;