#! /bin/bash

# wrapper for apple's shitty `open` command

exe=$1
shift

for f; do
	open -a $exe "$(grealpath "$f")"
done
