Is there for perl6 already something to get the Terminalsize?

( for example like the perl5 "Term::ReadKey::GetTerminalSize" );

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I'm not aware of a direct method, but parsing qx/resize/ should work on systems where the resize command is available.

Update: somewhat golfed parsing code:

my %h = qx/resize/.lines.grep(/\=/).map: { m/(\w+) \= (\d+) /; $/.list };
my ($y, $x) =  %h<LINES COLUMNS>;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.