Compare commits

..

No commits in common. "valentinpic" and "v1.0" have entirely different histories.

3 changed files with 1 additions and 21 deletions

View file

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

View file

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

View file

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