ftp指令碼實現ftp自動處理
比如下面一段指令碼存成一個檔案ftpcommand.ftp
open 10.192.77.53
informix
1
put haha.txt
quit
意思為開啟10.192.77.53 ,使用者名稱為informix,密碼為1。然後執行ftp命令
呼叫時為: ftp -s:ftpcommand.ftp 就可以完成。當然語句寫在.bat或.sh中即可完成對ftp的自動自理
下面是一個批處理:
@echo off
prompt $p$g
rem prompt #
echo ---------------ftp start---------------
ftp -s:ftpcommand.ftp
echo --------------- ftp end ---------------
pause
exit
下面是一個shell
host="10.192.77.53"
username="informix"
password="1"
ftp -i -n $host<<!EOF
user $username $password
prompt
put aaa.txt
quit
在shell中沒有使用ftp檔案實現,而是直接使用ftp命令。unix下的ftp好像不支援執行ftp命令檔案(linux下測試)。
相關推薦
ftp指令碼實現ftp自動處理
比如下面一段指令碼存成一個檔案ftpcommand.ftpopen 10.192.77.53informix1put haha.txtquit 意思為開啟10.192.77.53 ,使用者名稱為informix,密碼為1。然後執行ftp命令呼叫時為: ftp -s:ftpco
利用PHOTOSHOP CS 和 指令碼實現批量自動處理圖片
OptionExplicit''Batch converter for Photoshop CS2(Not tested for CS1)'author: cangwu.lee # gmail.com'saving parameterConst psSaveChanges =1Const
Linux使用Shell指令碼實現FTP自動下載檔案,並記錄下載檔案日誌
Linux使用Shell指令碼實現FTP自動下載檔案,並記錄下載檔案日誌 最近初學shell程式設計,記一下自己寫的第一個指令
Shell指令碼實現FTP上傳下載檔案
Linux下使用Shell指令碼實現FTP自動上傳和下載檔案 登入FTP實現下載檔案功能 FTP伺服器:10.11.10.11 FTP路徑:Down 本地路徑: ./ 將檔案從FTP下載到本地的指令碼如下: 批量下載指令碼程式碼 #從
[shell]shell指令碼實現每天自動抽取資料插入hive表
#!/bin/bash source /etc/profile source ~/.bashrc M_DATE=$(date -d'-1 day' +%m) #取系統日期前一天的月份 spark-sql -e" insert overwrite table db.t
linux 指令碼實現程式自動安裝
#!/bin/bash //設定指令碼中所需命令的執行路徑 PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin export PATH // $? 是取得上面執行命令的返回值,一般正確為0,錯誤為1 if [ "
Shell指令碼實現應用自動安裝部署
#!/bin/bash //設定指令碼中所需命令的執行路徑 PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin export PATH // $? 是取得上面執行命令的返回值,一般正確為0,錯誤為1 if [ "
JS指令碼實現瀏覽器自動點選(阿里員工秒殺月餅)
秒殺活動頁面 <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charse
Dockerfile 構建前端node應用並用shell指令碼實現jenkins自動構建
cat Dockerfile.node.pre FROM centos MAINTAINER zhao*******h.cn ENV LANG en_US.UTF-8 RUN /bin/cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime &
Dockerfile 構建前端nginx應用並用shell指令碼實現jenkins自動構建
Dockerfile 檔案構建docker映象 FROM centos MAINTAINER zh********h.cn RUN rm -f /etc/nginx/nginx.conf COPY nginx.conf /etc/nginx/nginx.conf WORKDIR / RUN
JS指令碼實現瀏覽器自動點選(阿里員工秒殺月餅)(轉)
僅為本人學習,筆記使用 阿里雲月餅 秒殺頁面 <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" conten
shell指令碼實現批量自動redis反彈shell攻擊
一、shell實現redis反彈shell [[email protected] attack]# cat shell_rebound.sh #!/bin/bash ##create b
shell指令碼實現mysql自動還原(linux)
#!/bin/bash #主機地址 host="localhost" #mysql使用者名稱 id="root" #mysql祕密 pwd="sanyue"dbs=$(echo "show databases;" | mysql -u$id -
ARM40-A5應用——Shell指令碼實現程序自動拉起
ARM40-A5應用——Shell指令碼實現程序自動拉起 2018.6.11 在Linux上許多程式是無法保證絕對穩定的,但必須要確保程式在出現小概率錯誤或者未知崩潰退出後,可以重新執行起來。 本文介紹一種基於shell指令碼的後臺程序來解決這種問題
linux ftp 命令詳解和自動上傳指令碼實現
1. ftp自動登入批量下載檔案。 #####從ftp伺服器上的/home/data 到 本地的/home/databackup#### #!/bin/bash ftp -n<<! open 192.168.1.171 user guest 123456 binary cd /hom
【FTP】org.apache.commons.net.ftp.FTPClient實現復雜的上傳下載,操作目錄,處理編碼
ttr hide working log 登錄 有一個 ima spl att 和上一份簡單 上傳下載一樣 來,任何的方法不懂的,http://commons.apache.org/proper/commons-net/apidocs/org/apache/commons/
Linux使用Shell腳本實現ftp的自動上傳下載
binary http linux user 文件中 get cal 文件重定向 tab 1. ftp自動登錄批量下載文件。#####從ftp服務器上的/home/data 到 本地的/home/databackup#####!/bin/bashftp -n<<
CentOS 6.9使用Shell腳本實現FTP自動上傳和下載文件
ftp shell 一、安裝配置FTP:# yum -y install vsftpd# service vsftpd start# ss -tunlp | grep 21//添加本地FTP登錄用戶ftpuser# useradd ftpuser# echo 123456 | passwd --std
shell腳本實現FTP自動上傳文件
sta get app TP ash ID open AR shell腳本 -----多個文件----- #!/bin/bash ftp -n<<! open 172.20.10.242 user logftp logftp binary cd
linux shell 自動處理ftp操作
#!/bin/sh#-------------------------------------------------------------------##機能 マネージメントデータベースのバックアップ#作者 2007/06/05 蔣彪 #--------