2010-03-13 164 views
0

我想从ftp文件从unix到as400并在脚本中执行iseries命令。 FTP工作正常,我得到的JOBD命令是错误的作为使用Iseries命令的Unix shell脚本

HOST=KCBNSXDD.svr.us.bank.net 
USER=test    
PASS=1234   #This is the password for the FTP user. 
ftp -env $HOST << EOF 
# Call 2. Here the login credentials are supplied by calling the variables. 
user $USER $PASS 
# Call 3. Here you will change to the directory where you want to put or get 
cd "\$QARCVBEN" 
# Call4. Here you will tell FTP to put or get the file. 
#Ebcdic 
#Mode b 
quote site crtccsid *user 
quote site crtccsid *sysval 
put prod.txt 
quote rcmd sbmjob cmd(call pgm(pmtiprcc0) parm('prod' 'DEV')) job(\$pmtiprcc) jobd(orderbatch) 
 
550-Error occurred on command SBMJOB cmd(call pgm(pmtiprcc0)) job($pmtiprcc) jobd(orderbatch). 
550 Errors occurred on SBMJOB command.. 
221 QUIT subcommand received. 
+0

既然你是新来的,欢迎来到StackOverflow。我编辑了你的问题,以包含在pre标签中的相关部分......以便阅读...... – t0mm13b 2010-03-13 17:53:25

回答

0

我帮不了,因为访问这个link,你可能会错过本想......

 
QUOTE RCMD OS/400 CL command | program [parameter1, parameter2, . . .parameterx] (Remote Command) 

应该你的FTP命令脚本是...

 
quote os/400 cl sbmjob cmd(call pgm(pmtiprcc0) parm('prod' 'DEV')) job(\$pmtiprcc) jobd(orderbatch)