You can use an unconditional loop:
java
while true; do ls -l; sleep 20; done
You can also look into tools like inotifywait or fsmon depending on what you are trying to accomplish. You can also install busybox for Android which contains the watch command.