Hi,
I was wondering if I could get a REXX to perform a checklist, it is not much just issue the commands and save it in a dataset (I'll do that later, now I guess I should start getting a way to send the commands) I've get to this to send the commands, not sure if it will work. I have the authority to issue those commands on the system that I plan to use it, but I don't have access to the system.
I don't see why it wouldn't work of course that it will just issue the commands, I'm just wondering if this is the right way.
I was wondering if I could get a REXX to perform a checklist, it is not much just issue the commands and save it in a dataset (I'll do that later, now I guess I should start getting a way to send the commands) I've get to this to send the commands, not sure if it will work. I have the authority to issue those commands on the system that I plan to use it, but I don't have access to the system.
Code:
/***REXX***/
"CONSOLE ACTIVATE"
"CONSOLE SYSCMD(d a,l)"
"CONSOLE SYSCMD($di)"
"CONSOLE SYSCMD(d t)"
"CONSOLE SYSCMD(d iplinfo)"
"CONSOLE SYSCMD(d u,tape,online,,99)"
"CONSOLE SYSCMD(d xcf)"
"CONSOLE SYSCMD($du,tp)"
"CONSOLE SYSCMD(*i q h)"
"CONSOLE SYSCMD(*s bdt,i,l=all)"
"CONSOLE SYSCMD(d r,r,tn)"
"CONSOLE DEACTIVATE"
I don't see why it wouldn't work of course that it will just issue the commands, I'm just wondering if this is the right way.