Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to abort wget?

Tags:

wget

sometime when I use wget to recursively download a website, I made a mistake and want abortion.

I've Searched over and over and no luck

like image 445
meka meka Avatar asked Aug 04 '10 23:08

meka meka


People also ask

How do you break wget?

You can stop downloading a file from wget just by pressing ctrl + c in the terminal.

How do I stop a download in Linux?

Only press Ctrl+C when you are downloading.

How does wget command work?

Wget is the non-interactive network downloader which is used to download files from the server even when the user has not logged on to the system and it can work in the background without hindering the current process.


1 Answers

What shell are you running wget from? In many shells, CTRL+C will cancel the currently-running process. If you are running a Linux shell, pkill -9 wget should be able to force-kill it if it's running in the background.

like image 122
bta Avatar answered Sep 18 '22 14:09

bta