bash - Linux repeat command automatically - Stack Overflow
Running commands periodically without cron is possible when we go with "while". As a command: while true; do ; sleep 100; done & Example: while true; do echo "Hello World" ; sleep 100; done & do not forget the last "&" as it will put your loop in the back...