I have a shell script that has user execution permission on OS X, but when I double click on it, it opens in a text editor. How can I get it to run by double-clicking it?
First in terminal make the script executable by typing the following command:
chmod a+x yourscriptname
Then, in Finder, right-click your file and select "Open with" and then "Other...".
Here you select the application you want the file to execute into, in this case it would be Terminal. To be able to select terminal you need to switch from "Recommended Applications" to "All Applications". (The Terminal.app application can be found in the Utilities folder)
NOTE that unless you don't want to associate all files with this extension to be run in terminal you should not have "Always Open With" checked.
After clicking OK you should be able to execute you script by simply double-clicking it.
.command
is by default executable from Finder, without the need to instruct Finder how to open it. –
Equidistant .command
suffix, I needed to chmod a+x
to make the script executable in the Finder, otherwise permission denied (I had read and write privileges). That was a Miniconda3-latest-MacOSX-x86_64.sh
with extension changed to .command
. –
Skippy chmod a+x
(which is typical), anyone can invoke it (assuming they're also allowed to read the file). In other words: my comment wasn't about chmod a+x
, it was about not needing to also tell Finder how to open such scripts. –
Equidistant .command
file extension. –
Nudi Have you tried using the .command
filename extension?
chmod +x
) but the .command
extension is already linked with Terminal. Great solution, thank you –
Voracity chmod +x
–
Staffard As of OSX 10.10 (Yosemite) and since at least OS X 10.8 (Mountain Lion), the behavior is as follows when you open (double-click) executable scripts from Finder:
Executable scripts[1] with either NO suffix or suffix
.command
:are executed by default - no setup required:
- a new Terminal window opens in which the script runs.
- by default, the window will remain open after the script terminates so you can inspect the output (though at that point the shell that ran the script has exited and you cannot interact with it any longer).
However, via Terminal'sPreferences... > Profiles
you can opt to automatically close the window when the script exits.
Caveat: the working folder is invariably the current user's home folder, NOT the folder in which the script is located.
- To make a shell script change to the folder in which it is located, place
cd -- "$(dirname "$BASH_SOURCE")"
right after the shebang line- or, if you must remain POSIX-compliant,
cd -- "$(dirname "$0")"
. - For edge cases, such as finding a symlinked script's true source directory, see this answer.
- To make a shell script change to the folder in which it is located, place
If the script is unexpectedly not executable:
Make it executable by running
chmod +x <script>
in Terminal; otherwise, you'll see the following symptoms:.command
: Finder displays a misleading error message that suggests the problem can be fixed viaFile > Get Info
, which is not true - use thechmod +x
method suggested above.no suffix:
- with a shebang line (e.g.,
#!/bin/bash
): behavior is as if the suffix were.sh
- see below. - with no shebang line: opens in your default text editor (which is TextEdit by default).
- with a shebang line (e.g.,
Scripts with suffix
.sh
, whether executable or not:- are opened for editing in
TextEdit.app
or, if installed, withXcode.app
.
- are opened for editing in
Scripts with suffix
.scpt
or.applescript
(even if they're themselves marked as executable, which is not normally the case):- opened for editing in
[Apple]Script Editor
- Note that the JXA source-code files seem to have no distinct suffix (yet).
- opened for editing in
Scripts with a custom suffix (a suffix not yet known to the system), whether executable or not (in fact, applies to any kind of file):
- prompt you for the app to open them with when you first open them, and remember that choice.
[1] Executable means: a script with the executable permission bit(s) set and the calling user - relative to the ownership to the file - therefore potentially being allowed to execute it.
If you use chmod a+x
to set all permission bits (which is typical), anyone can invoke it (assuming they're also allowed to read the file based on the read permission bit(s) and the file's ownership).
osascript
you can include in within the .command
file instead of manually messing with the profile. –
Colbert osascript -e '...'
command to the end of one's script? What's the specific command, and does it ensure that the right tab is closed even when the script is not running in the frontmost tab? –
Equidistant osascript -e 'tell application "Terminal" to close front window' > /dev/null 2>&1 &
... It might not work in every scenario, although the redirect at the end is really the key — the osascript can otherwise be adapted easily (eg. window may need to be changed to tab if that is your terminal default behavior, etc.). –
Colbert .command
script file has been ran despite the profile setting? –
Pease bash
script, add read -p 'Press Return to close this window.'
as the last statement. –
Equidistant .command
not to close? I mean I want to create a .command
file which when executed opens a terminal with pre defined PATH
variable. –
Arabia .command
file, first set up PATH
as desired, then invoke bash
- without arguments - to start an interactive session that will keep the window open. –
Equidistant .command
file has a valid shebang line (e.g., #!/bin/bash
); if it still doesn't work, please create a new question with an MCVE (Minimal, Complete, and Verifiable Example); feel free to ping me here once you have done so. –
Equidistant Alternatively, you could create a regular Mac OS X application from your script using Platypus
The easy way is to change the extension to .command
or no extension.
But that will open the Terminal, and you will have to close it. If you don't want to see any output, you can use Automator to create a Mac Application that you can double click, add to the dock, etc.
- Open
Automator
application - Choose "Application" type
- Type "run" in the Actions search box
- Double click "Run Shell Script"
- Click the
Run
button in upper right corner to test it. File > Save
to create the Application.
No need to use third-party apps such as Platypus.
Just create an Apple Script with Script Editor and use the command do shell script "shell commands"
for direct command calls or executable shell script files, keep the editable script file safe somewhere then export it to create an Application script. the app script is launch-able by double click or selection in bar folder.
You can also set defaults by file extension using RCDefaultApp:
http://www.rubicode.com/Software/RCDefaultApp/
potentially you could set .sh to open in iTerm/Terminal etc. it would need user execute permissions, eg
chmod u+x filename.sh
chmod 774 filename
Note: The file with name 'filename' that has the bash script has no extension
© 2022 - 2024 — McMap. All rights reserved.