macopen.shon commit Merge branch 'master' of ssh://charles/tank/andrew/code/scripts (6a282f1)
   1#! /bin/bash
   2
   3# wrapper for apple's shitty `open` command
   4
   5exe=$1
   6shift
   7
   8for f; do
   9        open -a $exe "$(grealpath "$f")"
  10done