From d8b315c564038c17374aa624573a6b1c918702b7 Mon Sep 17 00:00:00 2001 From: terminalforlife Date: Thu, 5 Mar 2020 21:28:11 +0000 Subject: [PATCH] Add header to `wget` & add example --- sheets/wget | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/sheets/wget b/sheets/wget index b9efc7a..fd0578f 100644 --- a/sheets/wget +++ b/sheets/wget @@ -1,6 +1,12 @@ -# Quietly download a file, continuing where it left of, if the connection fails. -# Note that the file will be downloaded to the current working directory. +# 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]