Unix shell script with Iseries command

Posted by user293058 on Stack Overflow See other posts from Stack Overflow or by user293058
Published on 2010-03-13T17:48:07Z Indexed on 2010/03/13 17:55 UTC
Read the original article Hit count: 581

Filed under:

I am trying to ftp a file from unix to as400 and executing iseries command in the script. ftp is working fine,I am getting an error in jobd command as

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. 

© Stack Overflow or respective owner

Related posts about unix-programming