How to pause wget downloads in terminal

use wget with the -c option so –

wget http://file

To pause the download press Ctrl+C

To resume the download –

wget -c http://file

In the same directory of course.