Fetching remote files
curl https://cdn.finaltek.net/robots.txt
Saving remote Files
curl -O https://cdn.finaltek.net/robots.txt
Saving remote files to a specific filename
curl -o roboti.txt https://cdn.finaltek.net/robots.txt
Parameters of curl
curl -I cdn.finaltek.net/robots.txt... follows redirect (http to https) and
with -L redo the request to the new location whenever it encounters a redirect:
curl L -o roboti.txt cdn.finaltek.net/robots.txt