Compare commits
3 commits
v1.0
...
valentinpi
Author | SHA1 | Date | |
---|---|---|---|
|
d8059adee6 | ||
|
de1377c672 | ||
|
fce856d7da |
3 changed files with 21 additions and 1 deletions
1
LICENSE
1
LICENSE
|
@ -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
15
assets/valentine
Normal file
|
@ -0,0 +1,15 @@
|
|||
.-"""-. .-"""-.
|
||||
/ `..' \
|
||||
| |
|
||||
| H A P P Y |
|
||||
\ VALENTINE'S /
|
||||
__\ D A Y ! /
|
||||
_ / |`\ /'
|
||||
| \ \/_/ `\ /'
|
||||
\_\| / __ `\ /'
|
||||
\/_/__\ `\/' .--='/~\
|
||||
____,__/__,_____,______)/ /{~}}}
|
||||
-,-----,--\--,-----,---,\'-' {{~}}
|
||||
__/\_ '--=.\}/
|
||||
/_/ |\\
|
||||
\/
|
|
@ -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}"
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue