Hi Dariusz, ... What this ??? Say in NIL: !! :))) say 'No messages.' is better :) ... There is no DO after else so no END (endif is not arexx cmd also :)) And...
Polymere said, ... That's the AmigaDOS say, not the ARexx say. It outputs through narrator.device, so there's no need to see any console output. Cheers Neil --...
Hello Polymere, ... I supplied do & end as it shows below: options results address YAM MAILCHECK If RESULT = 0 then do address command 'Say >NIL: No messages' ...
Dariusz Gac said, ... Your say commands will fail, the text should be quoted. address command 'Say >NIL: "No messages"' address command 'Say >NIL: "'RESULT'"' ...
Hello Neil, ... Noticed no difference with quoted text... it speaks word RESULT always, even if there is no emails.... ... YAM guide says so... I hae also...
Hi, This is a script for use with YAM. Say YAM is busy doing something - for instance, updating indexes, or downloading a lot of e-mail/big e-mails. You want...
Andrew Bruno
abruno@...
Aug 3, 2002 9:55 pm
2825
Dariusz Gac said, ... Have you tried it with a previous version? ... That's because RESULT isn't set, so it contains "RESULT", which has no spaces. The first...
Hello Neil, ... I've jest checked out YAM 2.3 020 (08.07.01) and both RESULT and stem downloaded working perfect as well. Fault is in YAM 2.4dev version... -- ...
each text file has a list of dates each on a separate line. ie. 020020802 020010809 and on and on............. there are 6000 plus lines the dates are in...
G'day sarkis_44, On 05-Aug-02, on the subject of "[arexx] comparing two text files?", you ... If you use DOpus Magellan, there's a /very/ nice file compare...
... if he have enough ram here another (maybe faster) solution (file2 lines must be bigger or equal as file1) this is not tested: /* open file 1 and read all...
opi said, ... This is probably slower as you have to keep building the string. You're also likely to hit the 64K string limit with a 6000 line file. ... ...
... maybe Sarkis can tell us which version is faster ;-) ... you are sure here is an 64k limit??? i cant' test it now because i don't on my Amiga :( ... i know...
Hi all Happily discovering the "SORT" command and finding other uses for it as well :) regards Sarkis will post back results from the speed duel :) ...
sarkissimon@...
Aug 5, 2002 12:30 pm
2834
opi said, ... Or a test routine would establish it. ... Yes. 40.0> rx "x='';do i=1 to 1024; x=x' ';end;y='';do i=1 to 64;y=y||x;end;say length(y)" Command...
... -- 8< -- ... Both likely to be true... There is a faster way, but it also adds complexity for files larger than 64K: Read the file in as large chunks as ...
Hannu E K Nevalainen ...
garbage_collector@...
Aug 5, 2002 3:35 pm
2836
garbage mail said, ... That's what I use when the file size isn't going to exceed 64K. Reading a file line by line is much slower than reading it all in one go...
... Going a little off topic here but does anyone (Neil!) know a faster way of saving messages from Thor that is faster than: READBRMESSAGE bla bla bla do i=1...
Paul Hill said, ... Yes, provided you really meant from THOR and not bbsread.library. THOR's ARexx port has a SAVEMESSAGE command, but you'll need THOR to be...
Hi all, I make some arexx script for build GUI with RxMUI. For start speed and allow non viewable source, I try to compil script with different kind of...
paulroberthill said, ... I know what yEnc is, but haven't got any messages with yEnc attachments to see how THOR handles them. If it sees them as text/plain...
... AFAIK this wouldn't work. The yEnc data is shown by Thor inline. yEnc doesn't use MIME. The encoded data is just appended to the end of a message. ...
paulroberthill said, ... Because THOR sees it at text/plain or similar. THOR uses datatypes.library to identify filetypes, so a text/yenc datatype, or ...
Hello Neil,
on 05-Aug-02 write you:
>> you are sure here is an 64k limit???
>> i cant' test it now because i don't on my Amiga :(
> > Yes.
ok - now i can...
Hello, Polymere: Be aware that most ARexx "compilers" don't actually compile the code, but they do put a wrapper around it. This increases the size by a small...
The Rexecute wasn't really a compiler in the normal meaning of the word. It still needs the RexxMast to be running in order for the programs to work. The Rexx...
Hi Donald, ... I know this :) jRMS allow to crypt the script in executable for hide source. But have 64ko limit too. (bug of compiler ? starter ? or rexxsyslib...