I run the following code unsuccessfully
sudo killall %4
where %4 is my Vim session.
How can you terminate a job without foregrounding it?
|
|
|||||||||||
|
|
|
I believe you want "kill" instead of "killall". I tested under tcsh like this:
Furthermore, I doubt this would work with sudo because sudo would invoke a new shell, wouldn't it? And in that shell, %4 would not be defined.
If you really need to sudo, you can try this:
|
||||||
|
|
|
Try No, sorry, that shell command won't quite work, but it does illustrate how killall works =p. It simply kills every process it can that matches the string you provide. Also, try `man kill' to learn more about kill. Particularly, kill -9 you may find useful. It's sorta the equivalent of 'force quit'. |
|||
|