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
If you want to do something a specific number of times you can always do this:
repeat 300 do my first command here && sleep 1.5