How to Rename File While Downloading with Wget in Linux

Wget utility is a popular and feature-rich command-line based file downloader for Unix-like operating systems and Windows OS. It supports non-interactive downloading of files over protocols such as HTTP, HTTPS, and FTP.

It’s designed to work reliably with slow or unstable network connections. Importantly, in case of network disruptions, it enables you to continue getting a partially-downloaded file by running a particular command again.

Suggested Read: 5 Linux Command Line Based Tools for Downloading Files

In this short article, we will explain how to rename a file while downloading with wget command on the Linux terminal.

By default, wget downloads a file and saves it with the original name in the URL – in the current directory. What if the original file name is relatively long as the one shown in the screen shot below.

$ wget -c https://gist.github.com/chales/11359952/archive/25f48802442b7986070036d214a2a37b8486282d.zip
Wget Download File
Wget Download File

Taking the example above, to rename the downloaded file with wget command to something else, you can use the -O or --output-document flag with the -c or --continue options helps to continue getting a partially-downloaded file as we explained at the start.

$ wget -c https://gist.github.com/chales/11359952/archive/25f48802442b7986070036d214a2a37b8486282d.zip -O db-connection-test.zip
Wget Rename Download File
Wget Rename Download File

Note that -O flag tells wget to perform shell redirection other than instructing it to use the new name instead of the original name in the URL. This is what practically happens:

$ wget -cO - https://gist.github.com/chales/11359952/archive/25f48802442b7986070036d214a2a37b8486282d.zip > db-connection-test.zip
$ ls
Wget - Rename File While Downloading
Wget – Rename File While Downloading

The file is written to standard output and then redirected by the shell to the specified file as shown in the screen shot above.

If you want to download videos from You-tube and other sites from the command line, you can install and use YouTube-DL in Linux.

That’s all for now! In this article, we showed how to rename the downloaded file with wget command. To send us any queries or add your thoughts to this article, use the comment form below.

Tutorial Feedback...
Was this article helpful? If you don't find this article helpful or found some outdated info, issue or a typo, do post your valuable feedback or suggestions in the comments to help improve this article...

If You Appreciate What We Do Here On TecMint, You Should Consider:

TecMint is the fastest growing and most trusted community site for any kind of Linux Articles, Guides and Books on the web. Millions of people visit TecMint! to search or browse the thousands of published articles available FREELY to all.

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Support Us

We are thankful for your never ending support.

5 thoughts on “How to Rename File While Downloading with Wget in Linux”

  1. How will i rename the downloaded file to a particular name in Windows?

    Any help would be grateful.

    Thanks,
    Jeena

    Reply
  2. Thanks for the Tutorial.

    I am using wget -i filename.txt to download all the images listed in text file, However there is one problem, In the end of images URL the pattern is something like this 1-foto-000.jpg?20180711125016 and the name of the saved file is 1-foto-000.jpg?20180711125016

    How can I save the file name till .jpg and not after that ?

    Reply

Got something to say? Join the discussion.

Have a question or suggestion? Please leave a comment to start the discussion. Please keep in mind that all comments are moderated and your email address will NOT be published.