TOOL » LINUX » PACKAGE

Wget

Usage

shell
wget OPTIONS URL
OptionDescription
-nv --no-verboseDisable verbose output.
-N --timestampingDo not download again if file already exists and have newer/same timestamp.
-P --directory-prefixDirectory to save the file. If the directory doesn't exist, it will be created.
--show-progressShow progress even when disabling verbose output.
--output-documentConcatenate and write all content into the specified filename.

Example

Download / update osu! saved at ~/.local/games/osu/osu.AppImage.

shell
wget -nv -NP ~/.local/games/osu/ --show-progress 'https://github.com/ppy/osu/releases/latest/download/osu.AppImage'