当前位置: 技术问答>linux和unix
自动 shell ftp 运动不能执行 问题
来源: 互联网 发布时间:2015-12-03
本文导语: ftp_shell() { if [ $# -lt 5 ]; then echo "param not enough"; return; fi hostname=$1 username=$2 userpass=$3 bakdir=$4 file=$5 ret=`ftp -n ${hostname} bin prompt mput *....
ftp_shell()
{
if [ $# -lt 5 ]; then echo "param not enough"; return; fi
hostname=$1
username=$2
userpass=$3
bakdir=$4
file=$5
ret=`ftp -n ${hostname} bin
prompt
mput *.*
close
bye
!
}
|
主要是你的END标志前面不能有其他符号,甚至是空格也不行,必须和