mozaddressbook 361 B

123456789101112
  1. #!/bin/sh
  2. #Puppy does not want more than one instance of Moz running.
  3. ps | grep --extended-regexp 'mozilla\-bin|iceape\-bin' > /dev/null 2>&1
  4. if [ $? -eq 0 ];then #=0 if found.
  5. xmessage "Please open Addressbook from Window menu of currently running Mozilla/Seamonkey"
  6. else
  7. #exec /usr/lib/mozilla/mozilla-bin -addressbook $@
  8. exec mozilla -addressbook $@
  9. fi