Open Terminal Here, as Root (OS X)
- by cwd
There is a pretty awesome applescript called "Open Terminal Here" ( http://www.entropy.ch/software/applescript/ ) which you can add to your finder's toolbar and click when you want to launch a terminal console which is set to that directory.
Sometimes I need to be root, and so I end up starting terminal, doing something like sudo -i and then I have to change back to the previous directory because the sudo command is landing me in /var/root.
I'm using sudo -i because I like it to load things like aliases / the bash profile.
The script is applescript, and here's the important part of how it works:
...
set cmd to "cd " & quoted form of the_path & " && echo $'\\ec'"
...
tell application "Terminal"
activate
do script with command cmd
How do I get this to load as root?