FTPの一括アップロード用シェルスクリプト

ファイル名

ftpupload.sh

コード下記

#!/bin/sh

hostIP=´10.2.110.110´
serverName=´ftp_startnews24´
password=´123456´

dirName=`pwd|sed 's/\//_/g’|cut -c2-`

if [ $1 = ´all' ];then   //ファイル名
ftp -i -n $hostIP <<EOF_FTP
user ${serverName} ${password}
mkdir $fileName
cd $fileName
mput *
quit
EOF_FTP
else
ftp -i -n $hostIP <<EOF_FTP1
user ${serverName} ${password}
put $1
quit
EOF_FTP1
fi

 

Source

Posted by arkgame