Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    }
    
    print getppid();
    
  2. or download this
    *CORE::GLOBAL::getppid = sub () {
        return "Hello world!\n" . CORE::getppid();
    };
    1;
    
  3. or download this
    $ perl -Mmygetppid -e "print getppid()"
    Hello world!
    23726