• Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    osco
    Posts: 680 from 2009/10/21
    From: Boston, USA
    Love Arexx and women too :) why there all different but still attractive
    OPTIONS RESULTS


    IF OPEN(input,"Ram:bar.bat", R) THEN DO

    DO UNTIL EOF(input)

    line=READLN(input)
    SAY line
    SAY SUBSTR(line,11,26)
    SAY SUBSTR(line,11,24)'txt'
    infile=SUBSTR(line,11,26)
    outfile=SUBSTR(line,11,24)'txt'
    SAY infile
    SAY outfile
    IF OPEN(input1,infile, R) THEN DO
    IF ~OPEN(output,outfile,W) THEN CALL ERROR

    DO UNTIL EOF(input1)
    line1=READLN( input1)
    IF POS('(',line1) =1 THEN WRITELN(output, line1) /* line begins with '(' at POS 1 */
    END


    CLOSE(input1)
    CLOSE(output)



    END

    EXIT

    ERROR:
    SAY "ERROR"

    EXIT
    The script only returns one output file..the first one...i am not initializing the first loop correctly? :-?
    Mac Mini 1.5GHz, 1G, 250G Drive, Apple Cinema Display, MorphOS 3.1 registered, MacOS 10 PowerBook (5,8) 1.67Hz, 2G, 80G Drive,........Waiting
    PowerBook (5,8) 1.67Hz, 2G, 40G MorphOS 3.1 unregisterd
  • »27.04.10 - 02:09
    Profile