/ Published in: Bash
infinitive loop in bash, useful if you want to have a self-healing process
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#!/bin/bash while : do echo "Press [CTRL+C] to stop.." sleep 1 done