[ILUGC] 1D1C -curl

  • From: Dhanasekar <tkdhanasekar@xxxxxxxxx>
  • To: ilugc@xxxxxxxxxxxxx, kanchilug@xxxxxxxxxxxxx
  • Date: Wed, 8 Jun 2022 06:00:00 +0530

curl - transfer a URL
$ curl https://www.ilugc.in

To display a progress meter during use to indicate the transfer rate,
amount of data transferred, time left, etc
$ curl -# -O ftp://ftp.mysite.com/file.zip

To resumes download which has been stopped when downloading large files was
interrupted
$ curl -C - -O ftp://mysite.int/10000MB.zip

To limit the upper bound of the rate of data transfer and keeps it around
the given value in bytes.
$ curl --limit-rate 500K -O ftp://mysite.in/10000MB.zip

To download files from user authenticated FTP servers
$ curl -u username:P@ssword -O ftp://mysite.in/confidential.txt

To upload a file to the FTP server, use the -T followed by the name of the
file to upload
$ curl -T file.zip -u username:P@ssword ftp://ftp.example.com/



regards,
T.Dhanasekar


---
Mailing List Guidelines: https://ilugc.in/mailing-list-guidelines
Web: http://ilugc.in/
Internet Relay Chat: #ilugc on libera.chat

Other related posts:

  • » [ILUGC] 1D1C -curl - Dhanasekar