运维网's Archiver
论坛
›
FTP服务器
› sh批量上传目录到FTP
542505989
发表于 2015-5-30 12:02:31
sh批量上传目录到FTP
#!/bin/bash
find anon_root -type f >> list.txt
while read i ; do wput "$i"ftp://user:password@ip ; done < list.txt
本人测试通过
国安信仰
发表于 2015-6-24 09:10:02
不错,学习了!
页:
[1]
查看完整版本:
sh批量上传目录到FTP