feed watchdog

exec 4<>/dev/watchdog && while true; do echo 'w' >&4; sleep 2; done; exec 4>&-

deprecated:

while true; do echo 'w' > /dev/watchdog; sleep 2; done