in reply to Can you create another perl interpreter within the current script?
#!/usr/bin/perl -w use strict; print "I wonder what will happen?\n"; open ME, "$0|" or die "Cannot do $o:$!\n"; while(<ME>) {print;} close ME; [download]