home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2013 February / ME_02_2013.iso / Software / Tuning / XtraFinder.dmg / XtraFinder.pkg / xtrafinderPreflight.pkg / Scripts / Scripts~ / preflight < prev   
Encoding:
Text File  |  2012-10-23  |  210 b   |  11 lines

  1. #!/usr/bin/env bash
  2. PKMKPIDFORAPP="./pkmkpidforapp"
  3. PKMKSENDAE="./pkmksendae"
  4.  
  5. RESULT=`"$PKMKPIDFORAPP" 'com.apple.finder' 'Finder'`
  6. if [ $RESULT -gt 0 ]; then
  7.     RESULT=`"$PKMKSENDAE" $RESULT 'quit'`
  8. fi
  9.  
  10. exit 0
  11.