[chuck-users] chuck and jack

Hans Aberg haberg at math.su.se
Fri Aug 14 13:13:18 EDT 2009


On 14 Aug 2009, at 18:02, Bozelos Dimitris wrote:

> It will be a pain in the ass to remove all the <<< ... >>> I have in  
> my code but I guess I have to... Yes, I'll report back if I see any  
> difference.

It is not so slow if you have an editor that can handle regexp  
(regular expression) search-and-replace. Enable it, and search for  
something like:
   <<<.*>>>

You might also try redirecting the output. Try
   chuck ... > chuck.out
And then in another window
   tail -f chuck.out
This writes the output to a file name 'chuck.out', which may have less  
buffering problems than a console. Then the 'tail' statement creates  
another process that reads the output as it is written to this file,  
so it cannot affect the 'chuck' process.

Alternatively, if you do not need the output, you might use
   chuck ... > /dev/null

It would be interesting to know if some of these two last options help.

   Hans




More information about the chuck-users mailing list