On my 17', if I want
aMulecmd$ statistics
the result is larger than my screen, so I can't see the first lines
, and I can't use shell command like statistics | less or other thing.
Have you got an idea ?
That's currently impossible. For that to work amulecmd should check whether its output goes to a terminal, if yes, check terminal size, etc. -- or allow command output piping to an external program. I don't think either is nearby the top of the TODO list of any developer...
However, you can work it around by capturing the output in the shell. The easiest way is
$ amulecmd -c "statistics" | more
or something similar.