By mistake I ran a funny command today that looks like vi filename | vi - . It made my terminal stuck even Ctrl-C was of no use. I had to close the terminal only. I tried it a couple of times and tried on my friend machine too. Just wondering why Ctrl-C was also not able to help.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
vi is reading from stdin. When you edit in vi Ctrl+c does not work either. :q or :q! will work like in a normal vi session. |
|||
|
|
|
Using the POSIX function signal() a C program can choose what to do if there is a keyboard interrupt. Here is an example (copied from this site):
But as you can see, vi doesn't use the keyboard interrupt to exit. It doesn't matter whether you are using it in a pipe or not. |
|||
|
|
|
Vi intercepts I could escape from that trap by using |
|||
|
|