〖Linux〗上傳單個檔案到FTP的Shell命令列(函數)

來源:互聯網
上載者:User

標籤:des   style   blog   color   io   檔案   2014   cti   

 1 #!/bin/bash -  2 #=============================================================================== 3 # 4 #          FILE: ftp_put_file.sh 5 #  6 #         USAGE: ./ftp_put_file.sh  7 #  8 #   DESCRIPTION:  9 # 10 #       OPTIONS: ---11 #  REQUIREMENTS: ---12 #          BUGS: ---13 #         NOTES: ---14 #        AUTHOR: linkscue (scue), [email protected]15 #  ORGANIZATION: 16 #       CREATED: 2014年08月03日 01時14分25秒 CST17 #      REVISION:  ---18 #===============================================================================19 20 # FTP上傳檔案21 # 依賴於 ncftp 命令22 put_action(){23     srv=$1                                      # FTP Server Addr24     port=$2                                     # FTP Server Port25     user=$3                                     # FTP Client User26     passwd=$4                                   # FTP Client Passwd27     dir=$5                                      # 檔案存放目錄28     file=$6                                     # 需上傳的檔案29     tmp=/tmp/$(basename $0)_$$.txt30     cat <<-EOF >$tmp31     cd $dir32     put $file33     bye34     EOF35     ncftp -u $user -p $passwd $srv $port <$tmp36     rm -f $tmp37 }38 39 put_action 192.168.1.201 21 scue 123 / dropbear.sh 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.