postgres-formula/postgres/templates/mac_shortcut.sh

9 lines
278 B
Bash
Raw Normal View History

2018-03-08 11:41:19 +00:00
#!/usr/bin/env bash
2018-03-08 12:30:25 +00:00
shortcutName='${1}'
2018-03-08 11:41:19 +00:00
app="postgres.app"
Source="/Applications/$app"
2018-03-08 12:30:25 +00:00
Destination="{{ homes }}/{{ user }}/Desktop/${shortcutName}"
2018-03-08 11:41:19 +00:00
/usr/bin/osascript -e "tell application \"Finder\" to make alias file to POSIX file \"$Source\" at POSIX file \"$Destination\""