FTP Upload instance of Curl command

Source: Internet
Author: User

The simplest-to access-a FTP server with username and Passwordcurl ftp://myftpsite.com--user MYNAME:MYPASSWORD&AMP;NB Sp;</span>with the command line above, Curl would try to connect to the FTP server and list all the directories and F Iles in the FTP home directory. To download a file from FTP Servercurl ftp://myftpsite.com/mp3/mozart_piano_sonata.zip--user myname:mypassword-o Mozart _piano_sonata.zip</span>to Upload a file to ftp servercurl-t Koc_dance.mp3 ftp://myftpsite.com/mp3/--user myname: Mypassword</span>to List files in sub Directories.curl ftp://myftpsite.com/mp3/&nbsp;--user myname:  Mypassword</span>list only directories, silent the Curl progress bar, and use grep to Filtercurl ftp://myftpsite.com &nbsp;--user Myname:mypassword-s | grep ^d</span>remove files from FTP server. This is a bit tricky, because Curl does not support so by default, well anyway, you can make use of of-x and pass in the REA L FTP command. (Check out a list of FTPService Command in RFC 959, under 4.1.3. FTP SERVICE COMMANDS) Curl ftp://myftpsite.com/-X ' DELE Mp3/koc_dance.mp3 '--user myname:mypassword</span> Caution:make sure you is know what is deleting! It would not prompts ' is you sure? ' confirmation. Check out Curl Manual for More,man curl</span>or This, ^^ (contains different info) Curl--manual | Less&nbsp;</span>

FTP upload instance of the Curl command

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.