Is it possible in Linux command line to have a command repeat every n seconds?
Say, I have an import running, and I am doing
ls -l >
ls -l
A concise solution, which is particularly useful if you want to run the command repeatedly until it fails, and lets you see all output.
while ls -l; do sleep 5 done