Running Linux Command In Loop
17 Sep 2013while [ 1 ]; do <command>; sleep <pause_time>; done
Example,
while true; do <command 1> ; <command 2> ; <command n> ; done
Example,
Tweet Follow @aayushtuladharwhile [ 1 ]; do <command>; sleep <pause_time>; done
Example,
while true; do <command 1> ; <command 2> ; <command n> ; done
Example,
Tweet Follow @aayushtuladhar