[PowerShell] FTP自动登录上传文件 →→→→→进入此内容的聊天室

来自 , 2021-01-18, 写在 PowerShell, 查看 158 次.
URL http://www.code666.cn/view/383beaea
  1. ####本地的/home/databackup to ftp服务器上的/home/data####
  2.        
  3. #!/bin/bash
  4. ftp -n<<!
  5. open 192.168.1.171
  6. user guest 123456
  7. binary
  8. hash
  9. cd /home/data
  10. lcd /home/databackup
  11. prompt
  12. mput *
  13. close
  14. bye
  15. !

回复 "FTP自动登录上传文件"

这儿你可以回复上面这条便签

captcha