downlaod with curl code example

Example 1: download a file using curl

$  curl -o taglist.zip http://www.vim.org/scripts/download_script.php?src_id=7701
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 50243  100 50243    0     0   170k      0 --:--:-- --:--:-- --:--:--  400k

Example 2: how to download a file with curl

//this downloads the file specified
curl "http://standards-oui.ieee.org/oui/oui.txt" --output macvendors.txt

Example 3: curl download file without output

curl -O https://www.cyberciti.biz/files/sticker/sticker_book.pdf

Tags:

Misc Example