KP Bhat
2007-10-07 03:46:25 UTC
Like Nehru, like Andrew Carnegie, like Bill Gates, like Warren Buffet,
I have this intense urge to return somethingbackto thesociety.
Make no mistake. I am not saying that I am in the same league as the
people that I have mentioned ----- far from it. There is hardly
anything that I can giveback. I am a poor, low-life computer
programmer, not blessed with excessive riches ---- so no "monies" will
be forthcoming from this end. However, in my own humble way, I would
like to payback, and this is what I have decided to do.
Over the years, I have benefited a lot from the open source movement.
I have used lots of open source code, and to good effect. I am a
strong believer in the open source concept. I would like to show my
intense gratitude by releasing somethingbackto the developer
community, as a most humble offering. It will all happen under this
"thread". It is my sincere hope that someday, somewhere, someone will
find this stuff helpful.
I would like to make it clear that I am not doing this for monetary
gain, or to gain bragging rights. This is just my way of saying to
the open-source community: From the bottom of my heart, thank you very
very much.
Regards,
Bhat
Found some more stuff that might (or might not) benefit the openI have this intense urge to return somethingbackto thesociety.
Make no mistake. I am not saying that I am in the same league as the
people that I have mentioned ----- far from it. There is hardly
anything that I can giveback. I am a poor, low-life computer
programmer, not blessed with excessive riches ---- so no "monies" will
be forthcoming from this end. However, in my own humble way, I would
like to payback, and this is what I have decided to do.
Over the years, I have benefited a lot from the open source movement.
I have used lots of open source code, and to good effect. I am a
strong believer in the open source concept. I would like to show my
intense gratitude by releasing somethingbackto the developer
community, as a most humble offering. It will all happen under this
"thread". It is my sincere hope that someday, somewhere, someone will
find this stuff helpful.
I would like to make it clear that I am not doing this for monetary
gain, or to gain bragging rights. This is just my way of saying to
the open-source community: From the bottom of my heart, thank you very
very much.
Regards,
Bhat
source community
#!/bin/ksh
# Script to highlight mispelled words in a file
#
for word
do
rezult=`echo $1 | spell`
if [ "$rezult" != "" ]
then
echo $1: Wrong
fi
shift
done