8 lines
356 B
Bash
8 lines
356 B
Bash
ls /Applications/ /Applications/Utilities/ /System/Applications/ /System/Applications/Utilities/ /Users/ivar.fatland/Applications/ /Users/ivar.fatland/Applications/Chrome\ Apps.localized/ | \
|
|
grep '\.app$' | \
|
|
sed 's/\.app$//g' | \
|
|
{ cat; echo "Finder"; } | \
|
|
sort | \
|
|
choose -z -a -p "Open App" | \
|
|
xargs -I {} open -n -a "{}.app"
|