Psh::Joblist.3pm

Langue: en

Autres versions - même langue

Version: 2001-09-05 (ubuntu - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

Psh::Joblist - A data structure suitable for handling job lists like bash's

SYNOPSIS

   use Psh::Joblist;
 
   $job = Psh::Joblist::create_job($pid,$displayed_command);
 
   Psh::Joblist::delete_job($pid);
 
   $job = Psh::Joblist::get_job($pid);
 
   $flag = Psh::Joblist::job_exists($pid);
 
   $index = Psh::Joblist::get_job_number($pid);
 
   $job = Psh::Joblist::find_job();
   $job = Psh::Joblist::find_job($index);
 
   Psh::Joblist::enumerate();
   while( $job= Psh::Joblist::each()) { ... }
 
 

DESCRIPTION

Read the source ;-)

AUTHOR

Markus Peter (warp@spin.de)