Home grown mail scheduler with bash script and cron

2013-10-04 2 min read Bash Linux

If you are using Linux (Fedora/Ubuntu or anything else) then you do get a lot of tools and one of them is cron. Very very useful. Just write some script that can do the task for you, put it in cron and forget it. So, here is a home grown way to schedule mails.

First, copy this script below:

#!/bin/bash -
#===============================================================================
#
#          FILE: sched_mail.sh
#
#         USAGE: ./sched_mail.sh
#
#   DESCRIPTION:
#
#       OPTIONS: ---
#  REQUIREMENTS: ---
#          BUGS: ---
#         NOTES: ---
#        AUTHOR: Amit Agarwal (aka), 
#      REVISION:  ---
#===============================================================================

mailfile="~/mail"
if [[ $(wc -l $mailfile|awk '{print $1}' ) -ge 5 ]]
then
    to=$(grep ^To: $mailfile|sed 's/To: //')
    echo "Good to send mail... to = $to"
    sendmail -t <$mailfile
    echo "once mail is send, delete the contents of file"
    echo "sed -i '4,$ d' $mailfile"
fi

Now, create a file called mail in your home directory, with the following contents:

Continue reading

Introducing /run – what is this directory doing in my root directory?

2011-04-13 1 min read Linux

boot process with EFI on Intel Macs
Image via Wikipedia

http://lwn.net/Articles/436012/

There is a suggestion to add /run directory that will be mounted as tmpfs. This directory will be mounted early in the boot process and can be used in various scenario’s. I hope this will improve few things in the linux world.

Enhanced by Zemanta

Create your own splash screen for gimp

2010-04-05 0 min read Fedora Photo
\"Category:Created
Image via Wikipedia

Gimp allows you to set the <a class="zem_slink freebase/en/splash_screen" title="Splash screen" rel="wikipedia" href="http://en.wikipedia.org/wiki/Splash_screen">splash screen very easily. All you need to do is copy the image to ~/.gimp-/splashes/. There is <a class="zem_slink freebase/en/betting" title="Betting (poker)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Betting_%28poker%29">no limit on the size or color. You just copy all the images you like to have as splash and one of them would be randomly picked up from the said direcotory for the splash image.

Continue reading