#!/usr/bin/env bash

RESULT=`/usr/bin/osascript > /dev/null <<EOT
tell application "Finder"
	set src to application file id "com.yourcompany.PCE-MM200"
	set dst to POSIX file "$HOME/Desktop/" as alias
	make new alias file to src at dst
end tell
EOT`

exit 0
