Bio-NEXUS

 view release on metacpan or  search on metacpan

doc/Tutorial.pod  view on Meta::CPAN

 system$ perl my_commands.pl 
 hello!

=item *

Make an executable script (note where the semi-colon and >> symbol are used)

 system$ echo '#!/usr/bin/env perl' > my_script.pl
 system$ echo 'print "hello!\n"; ' >> my_script.pl
 system$ echo 'exit;' >> my_script.pl
 system$ chmod +x my_script.pl
 system$ cat my_script.pl

 #!/usr/bin/env perl
 print "hello!\n";
 exit;

 system$ ./my_script.pl
 hello!

=back



( run in 0.224 second using v1.01-cache-2.11-cpan-496ff517765 )