MoshiachNow
IS-IT--Management
Can $\ Input Separator be changed in the middle of reading file ?
thanks
Long live king Moshiach !
thanks
Long live king Moshiach !
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
print "Type everything then send EOF.\n\n";
$/ = "\x04";
my $in = <STDIN>;
print "===\nYou said:\n$in\n";
exit(0);
[kirsle@firefly ~]$ perl test4
Type everything then send EOF.
Little Miss Muffet sat on her tuffet
In a nonchalant sort of way.
With her forcefield around her,
The Spider, the bounder,
Is not in the picture today.
===
You said:
Little Miss Muffet sat on her tuffet
In a nonchalant sort of way.
With her forcefield around her,
The Spider, the bounder,
Is not in the picture today.
perl -e '$|=$i=1;print" oo\n<|>\n_|_";x:sleep$|;print"\b",$i++%2?"/":"_";goto x;'