Run a command every “x seconds” Relatively often I have to run some command every n seconds, to see what is happening. To do this I generally resort to writing simple one liner in shell: =$ while true; do some command; sleep 5; done But it gets tedious. So I fixed it, by writing run_every. Continue reading Run a command every “x seconds"