macopen.shon commit deal with spaces in macopen.sh (3273c7f)
   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