有没有办法用Term :: ReadKey模块做到这一点?
#!/usr/bin/env perl
use warnings;
use 5.012;
use Term::Screen;
say( "Hello!\n" x 5 );
sleep 2;
my $scr = Term::Screen->new();
$scr->clrscr();
答案 0 :(得分:3)
我不知道为什么Term::ReadKey会提供这样的功能,或者是否会提供这样的功能。但是,怎么样:
#!/usr/bin/env perl
use strict; use warnings;
*clrscr = $^O eq 'MSWin32'
? sub { system('cls') }
: sub { system('clear') };
print "Hello\n" for 1 .. 5;
sleep 2;
clrscr();
答案 1 :(得分:1)
不确定为何要使用Term::Readkey
清除屏幕。它肯定没有这种能力。您是否尝试使用标准Perl安装的一部分?您可以使用Term :: Caps,它是标准Perl安装的一部分。不幸的是,它需要Termcaps文件在系统上,Windows没有。
use Term::Cap;
#
# Use eval to catch the error when TERM isn't defined or their is no
# Termcap file on the system.
#
my $terminal;
eval {$terminal = Term::Cap->Tgetent();};
#
# Use 'cl' to get the Screen Clearing sequence
#
if ($@) { #Most likely a Windows Terminal
system('cls'); #We really should be doing the 2 line below
# my $clear = "\e[2J"; #But, it doesn't seem to work.
# print "$clear"; #Curse You! I'll get you yet Bill Gates!
} else { #A Real Computer
my $clear = $terminal->Tputs('cl');
print "$clear";
}
print "All nice and squeeky clean!\n";
如果它是Windows终端,我尝试打印ANSI Escape序列,但它似乎不起作用。
我讨厌进行系统调用,因为存在安全风险。如果有人更改了您的cls
命令怎么办?