mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 01:30:25 +00:00
8 lines
278 B
Bash
Executable file
8 lines
278 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
shortcutName='${1}'
|
|
app="postgres.app"
|
|
Source="/Applications/$app"
|
|
Destination="{{ homes }}/{{ user }}/Desktop/${shortcutName}"
|
|
/usr/bin/osascript -e "tell application \"Finder\" to make alias file to POSIX file \"$Source\" at POSIX file \"$Destination\""
|
|
|