My scrapbook about anything which I learned or want to remember, Sometime about tech tips, thoughts and rambling. If you find anything useful don't forget to give thumbs-up :)

Breaking

Wednesday, October 7, 2015

Shell Script Scenario #2 - Solution


You can find other scenarios HERE



==================================================================================
#!/bin/ksh
#=================================================================================================================================
# Write a script which will check for a given file in every 60 seconds in a given directory,
#if find, send us a mail else keep running. We do not want to set this script in crontab.
# Author - Atul Singh
# Date - Aug 23, 2015
# Scenario - http://www.datagenx.net/2015/08/linux-shell-script-scenario-2.html
# www.DataGenX.net
#=================================================================================================================================
while :
do
sleep 60 & pid=$!
some_command arg1 arg2
wait $pid
done
view raw LinuxScn2c.ksh hosted with ❤ by GitHub
==================================================================================





Like the below page to get update  
https://www.facebook.com/datastage4you
https://twitter.com/datagenx
https://plus.google.com/+AtulSingh0/posts
https://groups.google.com/forum/#!forum/datagenx

No comments:

Post a Comment

Disclaimer

The postings on this site are my own and don't necessarily represent IBM's or other companies positions, strategies or opinions. All content provided on this blog is for informational purposes and knowledge sharing only.
The owner of this blog makes no representations as to the accuracy or completeness of any information on this site or found by following any link on this site. The owner will not be liable for any errors or omissions in this information nor for the availability of this information. The owner will not be liable for any losses, injuries, or damages from the display or use of his information.