endless score

Searching…

unix.stackexchange.com

Terminating an infinite loop - Unix & Linux Stack Exchange

To kill the outer loop I usually add a sleep command and press CTRL-C some more times: while :; do LONGTIME_COMMAND; sleep 1; done. Please notice: the colon behind while is interpreded as TRUE, so this is an endless loop.

unix.stackexchange.com

How to exit a git merge asking for commit message?

Jan 27, 2015 · I'm using git. I did a normal merge, but it keeps asking this: # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic br...

unix.stackexchange.com

How to run an infinite loop in the background

How can I run an infinite loop in the background, while continuing on with the script's execution? Example "script": while true; do something_in_the_background; done