in reply to 80x25 ASCII text art in terminal
I've seen this before, it depends on the terminal.
I can run this on my system (ArchLinux) in an xterm, and it works properly.
#!/usr/bin/perl use strict; use warnings; $SIG{__WARN__} = sub { die @_ }; $| = 1; print "x" x 2000; sleep 5;
It fills an 80x25 screen with 'x' and does not go to the next line until after it exits. It is in fact why I use xterms, because others I've tried have the problem that was complained about.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: 80x25 ASCII text art in terminal
by harangzsolt33 (Deacon) on Jun 18, 2023 at 13:01 UTC | |
by cavac (Prior) on Jun 19, 2023 at 11:40 UTC |