If you have the watch
command available on your distribution, you can run it like this:
watch -n 1 "ls /home/my"
This will run the ls /home/my
command every n
seconds (1
in this example) and will display the output to the screen.
Hope that can help.