Help for this page

Select Code to Download


  1. or download this
    perl -MSys::Hostname -we 'print( hostname() . ".$$." . time() . ".tmp"
    +, "\n")'
    
  2. or download this
      require Sys::Hostname;
    
    ...
        $processName = shift || "tmp";
        return $processName . "." . hostname() . ".$$." . time() . ".tmp";
      };