Help for this page

Select Code to Download


  1. or download this
    @reboot /path/to/perl /path/to/bbtester start > /tmp/cron_bbtester.log
    + 2>&1
    
  2. or download this
    package Module;
    
    ...
    sub flail_around {
        print "Flailing like a dying chicken!\n";
    }
    
  3. or download this
    use warnings;
    use strict;
    ...
    use Module qw(flail_around);
    
    flail_around();
    
  4. or download this
    spek@scelia ~/scratch/demo $ perl script.pl
    Flailing like a dying chicken!
    
  5. or download this
    spek@scelia ~ $ perl scratch/demo/script.pl
    Flailing like a dying chicken!