Wikl.amigaos.net
Posted: Sun Apr 06, 2014 12:56 pm
Not sure in which forum to post this, it might as well be "AmigaOS general". please move if needed.
I would like to point out some typos here:
http://wiki.amigaos.net/index.php/Amiga ... nd_Scripts
in the example the {RD} option needs to have a space removed in some places for the script to work.
should be
and
should be

I would like to point out some typos here:
http://wiki.amigaos.net/index.php/Amiga ... nd_Scripts
in the example the {RD} option needs to have a space removed in some places for the script to work.
Code: Select all
LIST >T:trd{$$} {RD} "{PATH}" FIRS LFORMAT="RPAT *"{COM}*" *"%p%n*" *"{OPT}*" RD=.{RD}"
Code: Select all
LIST >T:trd{$$}{RD} "{PATH}" FIRS LFORMAT="RPAT *"{COM}*" *"%p%n*" *"{OPT}*" RD=.{RD}"
Code: Select all
IF EXISTS T:trd{$$} {RD}
; subdirectories exist, execute new script
; file and clean up
EXECUTE T:trd{$$} {RD}
DELETE T:trd{$$} {RD}
Code: Select all
IF EXISTS T:trd{$$}{RD}
; subdirectories exist, execute new script
; file and clean up
EXECUTE T:trd{$$}{RD}
DELETE T:trd{$$}{RD}
