列出ftp服务器上的目录列表:
curl ftp://www.xxx.com/ --user name:passwd
curl ftp://www.xxx.com/ –u name:passwd
curl ftp://name:passwd@www.xxx.com
```
```bash
curl ftp://www.xxx.com –u name:passwd -s
```
```bash
curl ftp://www.xxx.com/size.zip –u name:passwd -o size.zip
```
```bash
curl –u name:passwd -T size.mp3 ftp://www.xxx.com/mp3/
```
```bash
curl –u name:passwd ftp://www.xxx.com/ -X 'DELE mp3/size.mp3'
```
```bash
curl –u name:passwd ftp://www.xxx.com/img/[1-10].gif –O
```
```bash
curl –u name:passwd ftp://www.xxx.com/img/[one,two,three].jpg –O
curl ftp://ftp.myh0st.cn/file[1-100].txt
curl ftp://ftp.myh0st.cn/file[1-100:10].txt
curl ftp://ftp.myh0st.cn/file[001-100].txt
curl ftp://ftp.myh0st.cn/file[a-z].txt
curl ftp://ftp.myh0st.cn/file[a-z:2].txt
```