Re: output formatting

2023-09-10 Thread Stephen Lewis via Bugs and suggestions for GNU APL
Thank you all for the quick replies and suggestions. Chris Moller, Bill Daly - Thanks, "Page Width" (Print Width?) solved my immediate problem, --PW 500 on commandline or ⎕pw←500. 'tr' and 'sed' does fix the spaces and blank line but my version (Gnu APL 1.8 from tarball) does not have --exec optio

Re: output formatting

2023-09-10 Thread Dr . Jürgen Sauermann
Hi, the problem seems to be that you let APL print to a terminal (which wraps long lines at ⎕PW). A better way is probably to use one of the ⎕FIO functions in your APL script as to write directly to the output file (which bypasses the terminal). Of course output forwarding in the shell would no

Re: output formatting

2023-09-10 Thread Kacper Gutowski
On Sun, 10 Sept 2023 at 01:08, Stephen Lewis wrote: > Writes elements in 4 row matrix with spurious > extra characters and a blank line. One thing you could do is to increase the print width ⎕PW so that it doesn't wrap, but ultimately this default printout is intended for human consumption. Shor