Tagged Questions
2
votes
1answer
57 views
Chain commands with Control + C interrupt
I am trying to execute a program which loops indefinitely, and so must be forcibly interrupted. After executing the program, I want to delete it. I can do it in several steps:
./MyProg
Control + C
...
4
votes
2answers
3k views
How to signal the end of stdin input in bash
In Bash, I learned that the ending
signal can be changed by here
document. But by default how can I
signal the end of stdin input?
I happened to find that with cat and
chardet, their stdin inputs can ...
1
vote
2answers
350 views
Is nohup indefinite?
If I run a program with an infinite loop with nohup, will the program run indefinitely (until the machine is reset or until I manually terminate it)?