How to Rename File While Downloading with Wget in Linux

Channel: Linux Commands Linux
Abstract: //gist.github.com/chales/11359952/archive/25f48802442b7986070036d214a2a37b8486282d.zip -O db-connection-test.zipyou can use the -O or --output-documen

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

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

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

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.

Ref From: tecmint
Channels: Wget Tips

Related articles