I see that the knowledge of REXX is somewhat limited even with OS/2 users.
[...]
So what can one do with REXX you wonder?
Alex Taylor has for example written some excellent software that you may have used, both command line scripts and GUI applications like Naps and ANPM to mention a few.
Glassman wrote AutoWGet that is very helpful to fetch things from the internet
and much more...
I use ooRexx to automatically create documents with maps to send to owners of land at work, drive office applications, vector drawing applications such as OpenOffice Draw, Calc etc. split/merge/extract text PDF documents with GhostScript and retrieve routes from google between places etc.
I myself have written a few dozens of simple rexx programs. While they may not be spectacularly useful for everyone I wrote them in REXX with the idea that anyone could see right away how stuff is done, and maybe this could pique the interest of more people (or new users?) than what is currently included with the system -- who doesn't like a good tutorial? So, I could try and turn what I have into one <g> if you guys think it could be of interest and are willing to provide useful feedback.
[...] I would welcome any additional tutorial material to help me improve [...]
IIRC Dave Yeo did a local build, but we have not discussed its status.
/**/
parse arg where
call lineout where,' 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5'
do i=1 to 15
call charout where,' '||right(i*16,3,' ')
do j=0 to 15
call charout where,' '||d2c(i*16+j)
end
call lineout where,' '||right(16*i+15,3,' ')
end
call lineout where,' 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5'
call lineout where
exit
/**/
parse arg where
call lineout where,' 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5'
do i=1 to 15
call charout where,' '||right(i*16,3,' ')
do j=0 to 15
call charout where,' '||d2c(i*16+j)
end
call lineout where,' '||right(16*i+15,3,' ')
end
call lineout where,' 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5'
call lineout where
exit
/*
Timed Command: executes its invoking parameters as an
external system command, and tells how long it took
*/
parse arg command
/* Depending on command output, this may go off-screen > repeat at the end */
start = time()
say 'Starting "'||command||'" at '||start
call time 'E' /* start timer */
/* Single literals execute as commands */
'@Echo Off'
command
cmdrc = rc /* save return code */
say 'Command: "'||command||'", '||,
'started at '||start||', ended at '||time()||'. '||,
'Elapsed: '||format(time('E'),,2)||'s.'
if cmdrc <> 0 then /* simple warning */
say 'Non-zero exit code (error?): '||cmdrc
exit cmdrc /* RC is passed along regardless of value */
[...]
say 'Command: "'||command||'", '||,
'started at '||start||', ended at '||time()||'. '||,
'Elapsed: '||t2hms(time('E'))||'.'
if cmdrc <> 0 then /* simple warning */
say 'Non-zero exit code (error?): '||cmdrc
exit cmdrc /* RC is passed along regardless of value */
t2hms: procedure
parse arg t
h = t % 3600
t = (t // 3600)
m = t % 60
s = (t // 60)
t = format(s,,2)||'s'
if (m > 0) then do
if (s < 10) then
t = '0'||t
t = m||'m:'||t
end
if (h > 0) then do
if (m < 10) then
t = '0'||t
t = h||'h:'||t
end
return t
[...]
parse arg command
command = strip(command,,'"')
[...]
/*
Timed Command: executes its invoking parameters as an
external system command, and tells how long it took
*/
parse arg command
/* Depending on command output, this may go off-screen > repeat at the end */
start = time()
say 'Starting "'||command||'" at '||start
call time 'E' /* start timer */
/* Single literals execute as commands */
'@Echo Off'
command
cmdrc = rc /* save return code */
say 'Command: "'||command||'", '||,
'started at '||start||', ended at '||time()||'. '||,
'Elapsed: '||format(time('E'),,2)||'s.'
if cmdrc <> 0 then /* simple warning */
say 'Non-zero exit code (error?): '||cmdrc
exit cmdrc /* RC is passed along regardless of value */
Code snippet #2: timed command
Rationale: one good thing about REXX is that it lets you use system commands in your code, which makes integrating both very easy. It is sometimes interesting to know how long some commands take to complete, so why not use some simple REXX to execute them and find out?
This REXX code will take its execution parameters as a command to be executed as is by the system shell, will report the time elapsed, and pass along its exit (return) code:Code: [Select]/*
Timed Command: executes its invoking parameters as an
external system command, and tells how long it took
*/
parse arg command
/* Depending on command output, this may go off-screen > repeat at the end */
start = time()
say 'Starting "'||command||'" at '||start
call time 'E' /* start timer */
/* Single literals execute as commands */
'@Echo Off'
command
cmdrc = rc /* save return code */
say 'Command: "'||command||'", '||,
'started at '||start||', ended at '||time()||'. '||,
'Elapsed: '||format(time('E'),,2)||'s.'
if cmdrc <> 0 then /* simple warning */
say 'Non-zero exit code (error?): '||cmdrc
exit cmdrc /* RC is passed along regardless of value */
K:\work\dooble\obj>time.cmd make clean
SYS1044: The system cannot accept the time entered.
Enter the new time:
Thanks for the better formatting.; )
I tried running the above snippet after saving it as time.cmd and got,Sounds like you're getting some other "time" invoked instead (see "help 1044"). Save as something else and retry, to make sure?Code: [Select]K:\work\dooble\obj>time.cmd make clean
SYS1044: The system cannot accept the time entered.
Enter the new time:
Same with quoting the make clean.
Command: "make clean", started at 23:06:44, ended at 23:06:44. Elapsed: 0.50s.
Interesting, I thought that invoking as time.cmd instead of time would run the script.
IF dir < dir.0 THEN leader = D2C(195)can be shortened to
ELSE leader = D2C(192)
leader = D2C( 192 + 3 * ( dir < dir.0 ) )
I thought that invoking as time.cmd instead of time would run the script.So did I, but I seemed to recall there was some reason why it was best not to do that kind of thing. I can't imagine what kind of bright mind would consider that behavior "working as designed", but I tried under 4os2 and I got the same result, so I won't call it a bug...
/* Retrieve help/tutorial/guide/intro to REXX */
'@yum -y install wget' /* ensure wget is available so we can retrieve/tools/packages/... from the web */
The above code would use the external tool and run yum. @ ensure that the command yum -y install wget doesn't appear on screen, while the output from the command do.Title | Type (Help/Tutorial/Reference/Guide/Examples/...) | Location | Format (pdf/inf/html/...) | License (free/gpl 3/restricted/commercial/...) | Interpreter (CRexx/ORexx/ooRexx/ARexx/BRexx/Regina/Roo) |
/* Purpose: Get information about the drive where the OS has been installed to */
/* Somewhat extended (and renamed) version of the one found in Rexx Tips & Tricks v3.60 */
/* Note the use of OS2ENVIRONMENT instead of just ENVIRONMENT as one can't assume a certain baseline version without forcing that one on others */
RxBootDrive: PROCEDURE EXPOSE (exposeList)
/* install a local error handler */
SIGNAL ON SYNTAX NAME BootDrive
boot_drive = ''
boot_drive = SysBootDrive()
BootDrive:
/* boot_drive is still empty if SysBootDrive() failed */
/* SysBootDrive() is only available in the newer versions of REXXUTIL! */
IF boot_drive = '' THEN
DO
/* Do further tests to ensure that the result of this method is correct! */
PARSE UPPER VALUE VALUE( "PATH",, prog.__env ) WITH "\OS2\SYSTEM" -2 boot_drive +2
boot_drive = STRIP( boot_drive )
os_dir = STRIP( LEFT( VALUE( 'OSDIR',, 'OS2ENVIRONMENT' ), 2 ) )
sys_cmd = STRIP( LEFT( VALUE( 'COMSPEC',, 'OS2ENVIRONMENT' ), 2 ) )
IF LENGTH( os_dir ) = 2 & LENGTH( sys_cmd ) = 2 THEN
IF os_dir = sys_cmd THEN RETURN os_dir
IF LENGTH( os_dir ) = 2 THEN
IF boot_drive = os_dir THEN RETURN boot_drive
IF LENGTH( sys_cmd ) = 2 THEN
IF boot_drive = sys_cmd THEN RETURN boot_drive
END
RETURN boot_drive