Possible Duplicate:
Ending a process in unix instead of interrupting it

When I task in Terminal, such as ping blah.com, how do I then stop this task (other than closing the Terminal window. In Windows, you can Ctrl+Break pretty much any terminal based process, but I can't figure out the way to do it on the Mac.

link|improve this question

feedback

closed as exact duplicate by John T, Diago Feb 2 '10 at 18:56

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

Ctrl + C

Ctrl + C is a the standard *nix way of signaling a process to abort.

link|improve this answer
feedback

Try ctrl-c. Also, ctrl-z might help if you want to suspend a process. For further information, man kill.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.