mozmail 350 B

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