how to use curl to download and save files in linux code example
Example 1: how to download using curl
curl http://some.url --output some.file
Example 2: how to download a text file with curl
//this downloads the file specified
curl "http://standards-oui.ieee.org/oui/oui.txt" --output macvendors.txt