13/08/2022 #linuxwatch (command) The command runs other commands or jobs repeatedly in N time intervalsGit: auto-commit all changes every 15 mins 1 watch -n 900 "git pull origin main && (git ls-files --modified --others --exclude-standard | grep . > /dev/null) && { git add . ; git commit -m 'auto-commit' ; git push origin main; }"