linux shell实现ftp自动上传下载文件
时间:2024-02-05 06:05:42 点击:179

  FTP自动登录批量下载文件

  从ftp服务器192.168.1.60 上的/home/data 到本地的/home/databackup

  #!/bin/bash

  ftp -v -n 192.168.1.60<

  user oracle 123456

  binary

  cd /home/data

  lcd /home/databackup

  prompt

  mget *

  close

  byeEOF

  FTP自动登录批量上传文件

  将本地文件夹/home/databackup里的文件上传到ftp服务器192.168.1.60 的/home/data 目前

  #!/bin/bash

  ftp -v -n 192.168.1.60 << EOF

  user oracle 123456

  binary

  hash

  cd /home/data

  lcd /home/databackup

  prompt

  mput *

  bye

  EOF

最新游戏更多

最新软件更多

  • 玩家推荐
  • 游戏攻略

金钼软件下载站 Copyright(C) 2008- 601958.cn All Rights Reserved!

闽ICP备2023004188号| 免责声明