@herminia_bruen
To download a file using curl only after a redirect, you can use the following command:
1
|
curl -L -o output_file URL |
Explanation of the options used in the command:
Replace output_file
with the name you want to give to the downloaded file and URL
with the actual URL of the file you want to download.
After running the command, curl will follow any redirects and download the file from the final URL specified.