home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Enigma Amiga Life 113
/
EnigmaAmiga113CD.iso
/
software
/
utilities
/
dirscanner
/
rexx
/
dsvisageslide.dsrx
next >
Wrap
Text File
|
2000-05-30
|
706b
|
38 lines
/*
$VER: DSVisageSlide.dsrx 1.2 (30.5.00) Copyright (c) Nils Görs
*/
Visage = "s:Visage.bat" /* Visage.bat is a frontend with several Visage settings i prefer */
OutPut = "t:DS_VisageSlide." /* the PortName from DirScanner will be added after the dot. */
options results
PARSE ARG DSPort
IF DSPort = "" THEN DSPort = DIRSCANNER.1
address value DSPort
unique=TIME('s')
Catalog = output||unique||"."||DSPort
SET LOCKGUI 1
open(outfile,catalog,'W')
more = 1
DO WHILE more
GOTO NEXTSEL
more = result
IF more = 1 THEN DO
GET MATCH_FILE
writeln(outfile,result)
END
ELSE more = 0
END
close(outfile)
ADDRESS COMMAND Visage "LIST" Catalog
ADDRESS COMMAND "Delete >NIL:" Catalog
SET LOCKGUI 0