![]() |
|
Problems? Is your data what you think it is? | |
PerlMonks |
Re: Terminal Clientby BerntB (Deacon) |
on Oct 24, 2008 at 15:05 UTC ( [id://719355]=note: print w/replies, xml ) | Need Help?? |
In the shell, try: perl -e 'print "\041\n";' Note that the char code is octal (you get a '!'). So don't write "02", write "\02". Since it is octal, if you want a cr, don't write "\013", write "\015"
In Section
Seekers of Perl Wisdom
|
|