手机
当前位置:查字典教程网 >脚本专栏 >linuxshell >Shell脚本实现上传zip压缩文件到FTP服务器
Shell脚本实现上传zip压缩文件到FTP服务器
摘要:复制代码代码如下:#/bin/bash#creator:lihuibin#date:2014-03-1016:45#desc:uploadf...

复制代码 代码如下:

# /bin/bash

# creator:lihuibin

# date : 2014-03-10 16:45

# desc : upload file to ftp

hosts="192.168.56.100"

port=21

user=test

pass=testpwd

work_path="/var/www/cms"

packname="publish"

#hosts=$1

#port=$2

#user=$3

#pass=$4

#packname=$6

#work_path=$5

cd $work_path

/usr/bin/zip -r $packname *

[ -f "$work_path/$packname" ] &&{

ftp -n<<!

open $hosts $port

type binary

user $user $pass

cd /upload

lcd $work_path

prompt

put $packname

close

bye

!

rm -f $packname

}

【Shell脚本实现上传zip压缩文件到FTP服务器】相关文章:

Shell脚本实现把进程负载均衡到多核CPU中

Shell脚本实现的单机流量统计功能

Shell脚本echo指令使用小技巧

Shell脚本实现的阳历转农历代码分享

Shell脚本中实现把输入的密码转换为*(星号)的方法

Shell脚本批量重命名文件后缀的3种实现

Shell脚本实现根据端口号kill相应进程功能

shell脚本实现linux系统文件完整性检测

Shell脚本8种字符串截取方法总结

Shell脚本中获取本机ip地址的3个方法

精品推荐
分类导航