macopen.shon commit Merge branch 'master' of /tank/andrew/code/scripts (06e7581)
   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