2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/wget
2020-03-05 21:28:11 +00:00

13 lines
381 B
Plaintext

# wget
# The non-interactive network downloader
# Quietly download a file, continuing where it left of, if the connection
# fails. The file will be downloaded to the current working directory.
wget -qc [URL]
# Specify a location to download the given file.
wget -qcO [PATH] [URL]
# Download URL using the user agent string provided to the `-U` flag.
wget -U 'Mozilla/5.0' [URL]