Thread Term::Choose und tput (10 answers)
Opened by gast_kuerbis at 2019-08-27 09:25

Gast gast_kuerbis
 2019-08-27 16:43
#190404 #190404
Kann ich das so machen? Ich möchte kein zusätzliches Modul laden, besonders wenn es kein Core-Modul ist.

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
my $tput_version;

eval {
    $tput_version = `tput -V 2>/dev/null`;
};

if ( defined $tput_version && length $tput_version ) {
    say "tput";
}
else {
    say "ANSI";
}

Last edited: 2019-08-27 16:54:45 +0200 (CEST)

View full thread Term::Choose und tput