At 07:49 PM 10/31/2006, David Heayn wrote: >I'm currently trying to check if firefox is running before I edit >pref files with perl (mac 10). This should work, and be portable as well. my @so = `ps aux`; my @firefox = grep( //, @so );