WizardKit/.macos_items/Diagnostics/Disk Inventory X.command
2017-12-04 16:57:19 -08:00

13 lines
303 B
Bash

#!/bin/bash
## Wizard Kit: Generic app launcher
# Init
## Get .bin absolute path (dirty code roughly based on http://stackoverflow.com/a/12197227)
pushd . > /dev/null
cd "$(dirname "$0")/../.bin"
BIN="$(pwd)"
popd > /dev/null
# Run
"$BIN/Disk Inventory X.app/Contents/MacOS/Disk Inventory X" &
exit 0