* Michael Pobega <[email protected]> 08.03.2009 > #! /bin/sh > > if [ $(ps aux | grep script.sh | grep -v grep) ]; then > <your script here>
Hello Michael,
what about "pgrep"?
-----------------------------------------------------+
#! /bin/bash |
|
if [ $(pgrep -x script.sh) ]; then <script here>; fi |
-----------------------------------------------------+
Just my 2ยข
Michael
--
"Nowhere you can be that isn't where you were meant to be. It's easy."
-- John Lennon
signature.asc
Description: Digital signature

