home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / lib / brltty / brltty.sh next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  2009-03-17  |  106 b   |  6 lines

  1. #!/bin/sh
  2. pid=/var/run/brltty
  3. [ -r $pid ] && kill -0 `cat $pid` && exit 0
  4. exec /sbin/brltty -P $pid "$@"
  5.  
  6.