This is mainly somewhere for me to dump interesting tidbits of tech info. Stuff that I may forget but will need again in the future. For a proper blog, visit my electronics blog (http://www.fangletronics.com) or my wife's pre-school crafty blog (http://www.filthwizardry.com).
Thursday, December 3, 2009
Infinite loop in bash
I needed an infinite loop for polling a database table for a while (killed with Ctrl-C).
while [ 1 ]; do mysql -u paul -h test_database -ppass test_paul data_table <<< "show processlist"; sleep 10; done
No comments:
Post a Comment