Skip to content

Instantly share code, notes, and snippets.

@dorukgezici
Last active July 14, 2017 05:45
Show Gist options
  • Save dorukgezici/9eaacf0bc04854870fe04741fe991367 to your computer and use it in GitHub Desktop.
Save dorukgezici/9eaacf0bc04854870fe04741fe991367 to your computer and use it in GitHub Desktop.
Linux's gksudo equivalent for macOS Sierra, written with AppleScript.
#!/usr/bin/osascript
on run argv
set |command| to ""
repeat with parameter in argv
set |command| to |command| & " " & parameter
end repeat
do shell script |command| with administrator privileges
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment