Y
Hacker News
new
|
ask
|
show
|
jobs
by
kibibyte
4689 days ago
For me, it doesn't even respond to ^C (or even ^\). I had to ^Z it, and then `kill %1`.
Could be an OS-dependent thing. I'm using OS X.
2 comments
Keyframe
4689 days ago
Indeed. It could use in front of while loop something like:
int_cmd(){exit 1;}trap 'int_cmd' 2;
link
brokenparser
4689 days ago
You get what you pay for.
link
int_cmd(){exit 1;}trap 'int_cmd' 2;