#Rx Window
T.33902
Henry,
Two answers: first the pull command is short hand for PARSE UPPER PULL
and we know what the UPPER does don't we? Just use PARSE PULL instead of PULL.
For the second question try this:
/*…*/
if ~open('FilePtr','con:0/20/640/309/ARexx Task/CLOSE','W') then exit
'list mine:Project/grammar/*.c > ram:temprexx'
if ~open('holder', 'ram:temprexx', 'R') then exit
do until eof('holder')
liner = readln('holder')
call writeln 'FilePtr', liner
end
'delete ram:temprexx'
call writeln 'FilePtr', '…Press RETURN to exit'
call readln 'FilePtr'
exit
If you work at it — I think using the pipe will allow you to do this with
writting to a temp file. If you do found out how to use the pipes I'd
appreciate you writting me back with the code.
-Tom