From: Andrew Lorimer Date: Tue, 11 Dec 2018 05:46:48 +0000 (+1100) Subject: Merge branch 'master' of charles:/tank/andrew/code/scripts X-Git-Url: https://git.lorimer.id.au/scripts.git/diff_plain/05a9d272b0c9372b3a1dfbaa9752ea332b63a170?hp=de0b71aa9f492f9f32fd949dcd625671852c4a32 Merge branch 'master' of charles:/tank/andrew/code/scripts --- diff --git a/macopen.sh b/macopen.sh index 51d2746..69909b7 100755 --- a/macopen.sh +++ b/macopen.sh @@ -1,21 +1,10 @@ #! /bin/bash -#include -#include +# wrapper for apple's shitty `open` command exe=$1 -files=${@:2} -path='' +shift -resolve() { - path=$(realpath $1) - echo $1 -} - -#$(open -a $1 - -for f in $files -do - open -a $exe $(resolve $f) - echo $(resolve $f) +for f; do + open -a $exe "$(grealpath "$f")" done