bash Tricks
bash Tricks From the Developers of the O'Reilly Network
Go read this article, a few pointers, and fun.
For LoopsWe've got a cluster of machines that we'll sometimes need to loop through. Here's an example from our admins that checks uptime across our cluster.
$ for s in `cat server.list`; do ssh $s uptime; done;
0 TrackBacks
Listed below are links to blogs that reference this entry: bash Tricks.
TrackBack URL for this entry: http://kennethhunt.com/mt/mt-tb.cgi/1373