Help for this page

Select Code to Download


  1. or download this
    $ cat abc.pl
    print "hello world\n";
    print "goodbye world\n";
    
  2. or download this
    $ cd
    $ perl ~/learn/perl/p5p/abc.pl
    hello world
    goodbye world
    
  3. or download this
    $ perl -d ~/learn/perl/p5p/abc.pl
    
    ...
    use o inhibit_exit to avoid stopping after program termination,
    h q, h R or h o to get additional info.
      DB<1> q
    
  4. or download this
    $ cd learn/perl/p5p
    $ perl -d abc.pl
    hello world
    goodbye world
    Var=
    
  5. or download this
    $ cd xyz
    $ perl -d ../abc.pl
    ...
    use o inhibit_exit to avoid stopping after program termination,
    h q, h R or h o to get additional info.
      DB<1> q
    
  6. or download this
    $ echo $PERLDB_OPTS