Sometimes it's needed to run a command repeatedly. One option to do that is to write a script and call that command in loop.
But there is a better option.Use linux watch command.
Usage : watch "your command"
Common options used with linux watch commands are :
-n : By default watch runs a specified command after every 2 seconds.With -n option we can change this time interval.
-d : It highlights the differences between successive updates.