spot and i just teamed up to build a remote command interface using java and perl. and my word, the perl script required is 11 characters. that's creepy and unnatural.
but it does work.
WHAT'S THE LESBIAN DOING IN MY PIRATE MOVIE?
i'm overdue for that weekend i was talking about.
Any chance of seeing this 11 character wonder?
ReplyDeleteif spot agrees to pass it along, then i suppose so...
ReplyDeletewell... it started as a 20 char wonder (ignoring whitespace, which perl does):
ReplyDelete$|=1;
while(<>){
print;
}
this was run as follows:
[bash]$ perl tester.pl > CMI
this was then shortened to:
$|=1;print;
and run:
[bash]$ perl -n tester.pl > CMI
granted $|=1; is read a ton of extra times but its still a useful perl script ^.^