running a shell script without opening terminal

ibanex23

Registered
Hey everyone,

Would anyone know how to enable a shell script to be double clicked on then run yet without opening terminal?

Thanks,
Erik
 
You can create an AppleScript that can run a shell script without opening the Terminal. The AppleScript can be compiled as a 'clickable' .app executable.

example:

do shell script "shell script here"
 
Use Script Editor (Applications/AppleScript/Script Editor)
to write the script, compile it, and save it to the desktop.

When you double-click the file icon, the script will run.

(aaaabra cadaaaabra!!!!)
 
mickey: that worked great yet I have a few scripts that ask me simple yes/no questions, is there any possible way to grab that input?
 
Back
Top