On 09 Jan 2002 19:27:03 +0100
Gr�goire Cachet <[EMAIL PROTECTED]> wrote:

> bonsoir !!
> 
> j'essaye d'ecrire un script bash :
> si un programme nomm� prog est deja lanc�, on ne fait rien
> si celui-ci n'est pas lanc�, on le lance
> 
> merci d'avance pour votre aide
> @+
> gr�goire
> -- 
> La t�te chez les femmes n'est pas un organe essentiel
> Anatole France
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 
> 

if [ ! ps -C prog ]; then
   prog
fi

Yann Aubert

Répondre à