#curl #unixtips
You can use curl to download files in your terminal if you don't have a proper browser.
You can use curl to download files in your terminal if you don't have a proper browser.
# -k equals --insecure, -o equals --output
curl -k -o "filename-you-want-to-save" "url you want to download"
# for example
curl -ko "stackoverflow.html" "https://stackoverflow.com/questions/75612763/downloading-files-with-curl"