RSH issue...trigged from mainframe on UNIX


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting RSH issue...trigged from mainframe on UNIX
# 1  
Old 04-05-2013
RSH issue...trigged from mainframe on UNIX

I'm invoking RSH from mainframe to trigger a shell script on unix. The Unix shell script return code is not realized back by RSH in mainframe. Even if the script finishes 'exit -1', still RSH gets RC 00 in mainframe.

I want 'exit -1' to be read as RSH failure RC and 'exit 0' as RSH RC 00 respectively. I want the subsequent mainframe steps to be flushed out if RSH returns failure RC.

How to achieve this? Any advice unix kings??
# 2  
Old 04-05-2013
Exit codes are always unsigned numbers, maybe that is the problem? Try exit 1 instead.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Vb file from UNIX to mainframe

Hi Everyone, Do I need to provide record length as Record length + 4 when I'm transferring a variable block files from unix to mainframe through ftp? For example, I have a file in unix (ebcidic converted) with maximum record length of 100. This works correctly, quote... (1 Reply)
Discussion started by: poova
1 Replies

2. UNIX for Dummies Questions & Answers

Sftp from UNIX to mainframe

Hi, I have many scripts where i have used sftp for file transfer from unix box to unix box.. Now that we have to sftp files from unix to mainframe, i would like to know if that is possible. I just tried in the same way i did from unix to unix, but i got the error as connection refused. Are... (2 Replies)
Discussion started by: dnat
2 Replies

3. Shell Programming and Scripting

rsh issue

Dear Geeks, I have already gone through the site and google for a fix. Nothing is relevant. So posting it here requesting your kind help. I am trying to take rsh and pass some commands. rsh $serverIP "top -b -d 2 -n 2" Same code i was able to run for IPs *.*.0.* but i am not able to... (2 Replies)
Discussion started by: Naga06
2 Replies

4. UNIX for Dummies Questions & Answers

UNIX sftp from mainframe

I have the following UNIX script which copies a file from a UNIX server in Canada to a UNIX server in the UK. LOG=/data/proj/sftp/canada.log DAT=`date "+%d/%m/%y %H:%M"` HOMEDIR=/data/proj/sftp TGTFILE=P_DATA.csv cd $HOMEDIR echo "\nStarting retrieval of Canadian Data at $DAT" >> $LOG ... (1 Reply)
Discussion started by: mishnok
1 Replies

5. UNIX for Dummies Questions & Answers

Issue: SFTP via Mainframe using BPXBATCH

Hi, I am trying to execute sftp transfer via the bpxbatch utility. I am getting an exit status of 16. Any idea what this means ? I have searched almost everywhere but couldn't find the mention of status 16. Below is the log: debug1: Next authentication method: publickey. ... (0 Replies)
Discussion started by: ali_asgar
0 Replies

6. UNIX and Linux Applications

ftp from unix to Mainframe

suppose i have a file named xyz(-1) and i have to transfer(ftp) it on a Mainframe from unix,how should i do it as whenever i try to do so it says use MVS naming conventions (1 Reply)
Discussion started by: ashishabhishek
1 Replies

7. HP-UX

ftp from unix to mainframe

hi suppose i have a file named xyz(-1) and i have to transfer(ftp) it on a Mainframe from unix,how should i do it as whenever i try to do so it says use MVS naming conventions (1 Reply)
Discussion started by: ashishabhishek
1 Replies

8. AIX

Issue with rsh

Hi frnz, I am facing an odd issue with rsh. I am trying to rsh to a destination workstation from my workstation. The .rhosts file in the destination is having my hostname. but when i do rsh i am prompted for the password every time. I have added my hostname in host.equiv file also in the... (5 Replies)
Discussion started by: sriram.s
5 Replies

9. UNIX for Dummies Questions & Answers

USS (unix) on the Mainframe

Does anyone work with USS on an IBM Mainframe computer on this msg board? (2 Replies)
Discussion started by: Javagate
2 Replies

10. Post Here to Contact Site Administrators and Moderators

USS (unix) on the Mainframe

am wanting to know if the board is worth my time and effort since I work with USS (Unix System Services) on a Mainframe computer. If there are others who use USS on the Mainframe this will be helpfull. I dont want to spend my time racking up the number of posts I have nor should anyone else. ... (2 Replies)
Discussion started by: Javagate
2 Replies
Login or Register to Ask a Question