Skip to content


How to download files from the Linux command line

Linux Windows

Wget is a very cool command-line downloader for Linux and UNIX environments. Don’t be fooled by the fact that it is a command line tool. It is very powerful and versatile and can match some of the best graphical downloaders around today. It has features such as resuming of downloads, bandwidth control, it can handle authentication, and much more. I’ll get you started with the basics of using wget and then I’ll show you how you can automate a complete backup of your website using wget and cron.

Let’s get started by installing wget. Most Linux distributions come with wget pre-installed. If you manage to land yourself a Linux machine without a copy of wget try the following. On a Red Hat Linux based system such a Fedora you can use:

# yum install wget

or if you use a Debian based system like Ubuntu:

# sudo apt-get install wget

One of the above should do the trick for you. Otherwise, check with your Linux distribution’s manual to see how to get and install packages. wget has also been ported to Windows. Users on Windows can access this website. Download the following packages: ssllibs and wget. Extract and copy the files to a directory such as C:\Program Files\wget and add that directory to you system’s path so you can access it with ease. Now you should be able to access wget from your Windows command line.

The most basic operation a download manager needs to perform is to download a file from a URL. Here’s how you would use wget to download a file:

# wget http://www.sevenacross.com/photos.zip

Yes, it’s that simple. Now let’s do something more fun. Let’s download an entire website. Here’s a taste of the power of wget. If you want to download a website you can specify the depth that wget must fetch files from. Say you want to download the first level links of Yahoo!’s home page. Here’s how would do that:

# wget -r -l 1 http://www.yahoo.com/

Here’s what each options does. The -r activates the recursive retrieval of files. The -l stands for level, and the number 1 next to it tells wget how many levels deep to go while fetching the files. Try increasing the number of levels to two and see how much longer wget takes.

Now if you want to download all the “jpeg” images from a website, a user familiar with the Linux command line might guess that a command like “wget http://www.sevenacross.com*.jpeg” would work. Well, unfortunately, it won’t. What you need to do is something like this:

# wget -r -l1 –no-parent -A.jpeg http://www.sevenacross.com

Another very useful option in wget is the resumption of a download. Say you started downloading a large file and you lost your Internet connection before the download could complete. You can use the -c option to continue your download from where you left it.

# wget -c http://www.sevenacross.com/ubuntu-live.iso

Now let’s move on to setting up a daily backup of a website. The following command will create a mirror of a site in your local disk. For this purpose wget has a specific option, –mirror. Try the following command, replacing http://sevenacross.com with your website’s address.

# wget –mirror http://www.sevenacross.com/

When the command is done running you should have a local mirror of your website. This make for a pretty handy tool for backups. Let’s turn this command into a cool shell script and schedule it to run at midnight every night. Open your favorite text editor and type the following. Remember to adapt the path of the backup and the website URL to your requirements.

#!/bin/bash

YEAR=`date +”%Y”`
MONTH=`date +”%m”`
DAY=`date +”%d”`

BACKUP_PATH=`/home/backup/` # replace path with your backup directory
WEBSITE_URL=`http://www.sevenacross.net` # replace url with the address of the website you want to backup

# Create and move to backup directory
cd $BACKUP_PARENT_DIR/$YEAR/$MONTH
mkdir $DAY
cd $DAY

wget –mirror ${WEBSITE_URL}

Now save this file as something like website_backup.sh and grant it executable permissions:

# chmod +x website_backup.sh

Open your cron configuration with the crontab command and add the following line at the end:

0 0 * * * /path/to/website_backup.sh

You should have a copy of your website in /home/backup/YEAR/MONTH/DAY every day. For more help using cron and crontab, see this tutorial.

There’s a lot more to learn about wget than I’ve mentioned here. Read up wget’s man page.

Posted in Guest Blogger, Linux, Windows.

Get Simple Help tutorials just like this one in your email inbox every day - for free! Just enter your email address below:

 

You can always opt out of this email subscription at any time.

10 Responses

Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.

  1. azeddine says

    per aprire

  2. marco says

    Another good downloadmanager for the console is Axel:
    http://axel.alioth.debian.org/

    Features:
    -multiple connections,
    -multiple mirrors,
    -resuming (if the server supports it),
    -no dependencies and
    -lightweight

    If you have big downloads (CD/DVD-Images), i suggest to use axel instead of wget, it’s a WAY faster then wget.

  3. zzz says

    # Ням установить Wget – это круто.

  4. Info Gaptek says

    This page is very useful.
    Thanks for your help!

  5. Fernando says

    O comando para certo no fedora é # yum instal [nome do programa]
    ou ainda # rpm -Uvh nomedopacote.rpm

  6. Abhishek says

    my first ever comment…realy very gud and simple for novice user…hats off man!!!!!

  7. ankur says

    very clearly written!!

  8. Pushparaj says

    Written nicely. Very useful for newbies

  9. Mitesh says

    how to download documen from Windos command prompt(CMD).

    i hava internet plan in which i can download unlimited from 2 a.m to 8a.m.
    so i can set time to wake up but how to download file without presence of me(using cmd)

    so please help me

Continuing the Discussion

  1. Daily Lifestream Digest for 2009-01-05 linked to this post on January 6, 2009

    [...] Jackie bookmarked a link on Delicious. How to download files from the Linux command line – Simple Help [...]



Some HTML is OK

or, reply to this post via trackback.