start-skype-maybe 96 B

1234567
  1. #!/bin/sh
  2. ps aux | grep '[s]kype'
  3. if [ $? -eq 1 ] ; then
  4. [ -e `which skype` ] && skype
  5. fi