[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] Perl Question
- Subject: [ale] Perl Question
- From: Dan_Newcombe at oit.peachnet.edu (Dan Newcombe)
- Date: Mon, 1 Jun 1998 13:56:53 -0400
print "\033\046\154\061\117";
That would print what you had below. Basically, it is the decimal number
below converted to octal and the \xxx tells it to print octal.
-Dan
> Does anyone have experience with sending escape sequences or the like for
> HP printers via Perl?
>
> @1,1 SAY CHR(27) + CHR(38) + CHR(108) + CHR(49) + CHR(79)
>
> I would like to be able to do something similar with Perl.