linux shell实现ftp自动上传下载文件
时间:2023-07-02 05:06:36 点击: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- ytdonghua.net All Rights Reserved!

闽ICP备2023006282号-2| 免责声明