Outrageous Larry!<div><br></div><div>I knew you didn't forget us for Xmas 2012</div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Dec 29, 2012 at 9:30 AM, Dazed_75 <span dir="ltr"><<a href="mailto:lthielster@gmail.com" target="_blank">lthielster@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">I figured some few folks might be interested in this and maybe some might have read enough to comment on which of the 20 are the best for different types of readers. An BTW, all 4 parts are there, this is not just the first in a series of articles.<br>
<br><a href="http://www.linuxlinks.com/article/20121228122317781/20oftheBestFreePythonBooks-Part1.html" target="_blank">http://www.linuxlinks.com/article/20121228122317781/20oftheBestFreePythonBooks-Part1.html</a><span class=""><font color="#888888"><br clear="all">
<br>-- <br>
Dazed_75 a.k.a. Larry<br><br>Please protect my address like I protect yours. When sending messages to multiple recipients, use the BCC:
(Blind carbon copy). Remove addresses from a forwarded message body before clicking Send. <br>
</font></span><br></blockquote></div><pre><div class="" style="background-color:rgb(249,249,249);width:630px;border:2px solid rgb(204,204,204)"><font color="#000000"><span style="font-size:14px;line-height:19px">#!/bin/bash
# SCRIPT: happynewyear.sh
# PURPOSE: Prints Happy New Year
#
# \\\\ ////
# \\ - - //
# @ @
# ---oOOo-( )-oOOo---
#
##############################################################################
# Arguments Checking #
##############################################################################
if [ $# -eq 1 ]
then
fname=$1
else
echo "Invalid Arguments"
echo "Usage: happynewyear.sh filename"
exit
fi
##############################################################################
# Main Starts #
##############################################################################
clear
i=0
while read line
do
if [ $i -lt 8 ] ; then
COLOR1="\e[1;31;40m" ; COLOR2="\e[0m" # Dark Red
elif [ $i -gt 8 -a $i -lt 17 ] ; then
COLOR1="\e[1;37;40m" ; COLOR2="\e[0m" # White
elif [ $i -gt 17 -a $i -lt 26 ] ; then
COLOR1="\e[1;32;40;5m" ; COLOR2="\e[0m" # Dark Green with blinking
fi # effect
newline=`echo "$line" | tr '69' ' @' `
printf "$COLOR1$newline $COLOR2" # you can also use echo -e "...."
let i++
sleep 0.1
done < $fname
read # Waits for enter<br></span></font></div><font color="#555544"><span style="font-size:14px;line-height:19px"><br><br>Copy below ---> save it as "newyear.txt"<br><br>
</span></font><div class="" style="color:rgb(0,0,0);font-size:14px;line-height:19px;background-color:rgb(249,249,249);width:630px;border:2px solid rgb(204,204,204)">6666666666996666699666666666966666666669999999996699999999966996666669966666666<br>
6666666666996666699666666669996666666669999999996699999999966699666699666666666<br>6666666666996666699666666699669966666669966666996699666669966669966996666666666<br>6666666666999999999666666996666996666669999999996699999999966666999966666666666<br>
6666666666999999999666669999999999666669999999996699999999966666699666666666666<br>6666666666996666699666699999999999966669966666666699666666666666699666666666666<br>6666666666996666699666996666666666996669966666666699666666666666699666666666666<br>
6666666666996666699669966666666666699669966666666699666666666666699666666666666<br>6666666666666666666666666666666666666666666666666666666666666666666666666666666<br>9966666996699999999669966666996666699666666996999999996666666696666666699999999<br>
9996666996699999999669966666996666669966669966999999996666666999666666699999999<br>9999666996699666666669966666996666666996699666996666666666669969966666699666699<br>9969966996699999999669966966996666666699996666999999996666699666996666699999999<br>
9966996996699999999669969996996666666669966666999999996666999999999666699999999<br>9966699996699666666669999699996666666669966666996666666669999999999966699699666<br>9966669996699999999669996669996666666669966666999999996699666666666996699669966<br>
9966666996699999999669966666996666666669966666999999996996666666666699699666699<br>6666666666666666666666666666666666666666666666666666666666666666666666666666666<br>6666666666666666666666699999999666999699999666999666699966666666666666666666666<br>
6666666666666666666666699999999666996666699666699666669966666666666666666666666<br>6666666666666666666666666666996666999666699666699666669966666666666666666666666<br>6666666666666666666666666669966666996696699666699666669966666666666666666666666<br>
6666666666666666666666666699666666996669699666699666669966666666666666666666666<br>6666666666666666666666669966666666996666999666699666669966666666666666666666666<br>6666666666666666666666699999999666996666699666699666669966666666666666666666666<br>
6666666666666666666666699999999666999699999666999966699996666666666666666666666</div><font color="#555544"><span style="font-size:14px;line-height:19px"><br>For blinking effect run this script in console, not in terminal.<br>
<br></span></font><b style="color:rgb(85,85,68);font-size:14px;line-height:19px"><span style="color:rgb(255,0,0)">OUTPUT:</span></b><font color="#555544"><span style="font-size:14px;line-height:19px"><br>$ sh happynewyear.sh newyear.txt</span></font></pre>
<div><br></div>-- <br>(503) 754-4452 Android<br>(623) 239-3392 Skype<br>(623) 688-3392 Google Voice<br>**<br><a href="http://it-clowns.com" target="_blank">it-clowns.com</a> <br>Chief Clown<br><br>
</div>