Is it possible to manually abort the currently running bash command? So, for example, I’m using ‘find’ but it’s taking ages… how do I manually stop it?
Is it possible to manually abort the currently running bash command? So, for example,
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Some things won’t respond to Ctrl+C; in that case, you can also do Ctrl+Z which stops the process and then
kill %1– or evenfgto go back to it. Read the section inman bashentitled “JOB CONTROL” for more information. It’s very helpful. (If you’re not familiar withmanor the manpager, you can search using/.man bashthen inside it/JOB CONTROLEnter will start searching, n will find the next match which is the right section.)