home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Meeting Pearls 3
/
Meeting_Pearls_III.iso
/
SYS
/
Rexx
/
openfilerwindow.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-09-17
|
378b
|
21 lines
/* Opens a window in Filer */
parse arg path ":" app
if path=="-" then do
if open(fh,":Index/infos/"||app||".path","r") then do
path=readch(fh,256)
path=left(path,length(path)-1)
call close(fh)
end
else do
address command
":C/MetaTool :Index/bricks/error-internal TEXT"
exit 10
end
end
address command "Run :Pearls/util/Directory/Filer/Filer :"||path
exit 0