home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
system
/
printfiles
/
english
/
rexx
/
version
< prev
next >
Wrap
Text File
|
1995-02-27
|
587b
|
18 lines
/* prf_version */
options results /* Ergebnisse anfordern */
if ~show(ports,'PRINTFILES')then do /* Läuft PrintFiles schon ? */
address command 'printfiles' /* wenn nicht, dann ein Startversuch */
address command 'sys:rexxc/WaitForPort PRINTFILES' /* noch ein bisschen abwarten */
end /* */
if ~(show(ports,'PRINTFILES')) then return 5 /* Rückgabewert 5 bei Mißerfolg */
address PRINTFILES /* Kommandos an PrintFiles */
say
say "********************************************"
version
say "You are using " result
say "********************************************"
say