Linux - Download in backgroud

Method 1:
wget -bqco wget.log http://url/file.iso
-b : run in background
-o : log output to wget-log.
-q : Turn off Wget’s output
-c : Resume broken download i.e. continue getting a partially-downloaded file.


Method 2:
nohup wget http://url/file.iso &exit

Comments