macopen.shon commit add webp-convert.sh, fix quotes in lastframe.sh (f77f899)
   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