mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
18 lines
179 B
Perl
18 lines
179 B
Perl
#!/usr/bin/perl
|
|
|
|
require 'cbreak.pl';
|
|
|
|
&cbreak;
|
|
|
|
$| = 1;
|
|
|
|
print "gimme a char: ";
|
|
|
|
$c = getc;
|
|
|
|
print "$c\n";
|
|
|
|
printf "you gave me `%s', which is 0x%02x\n", $c, ord($c);
|
|
|
|
&cooked;
|