Sunday 31 May 2015

The best download manager for Linux

Linux is already consisting of it's download manager. So we don't need to install any software in Linux. That tool is WGET.
WGET is the powerful download manager for Linux. It consist more features.



1. To download a file from internet:

   # wget http://url-of-web-content/somthing.mp3

2. If any interrupts occure, when downloading the file, Don't worry about that.
We can resume the download by typing,

  # wget --continue http://url-of-web-content/somthing.mp3
                                 or
  # wget -c http://url-of-web-content/somthing.mp3

3. Downloading entire website:
 
  # wget \
-r \
-nc \
- \
--html-extension \
-k \
--restrict-file-names=windows \
--domains examplesite.com \
--no-parent \
www.examplesite.com

To get all information about the above codes, please refer man pages for the wget tool.




No comments:

Post a Comment