I use netbeans 6.8 beta and when i load .sh (bash) file it's not colored at all. i can add a new file association for the .sh extension but it doesn't seem that there is a known associated mime type.
3 Answers
I have not tried this myself but you can get shell script support in Netbeans if you install the C/C++ plugin.
7 Comments
.bash_aliases) but started with #!/bin/bash and that seems to trigger the bash formatting! Thanks 🙏old question, time for an update (tested for 8.0.2,8.1,8.2).
Here's what worked for me
- Install C/C++ plugin. This will recognize .sh extensions as bash files
- Install nb-noext-mime-resolver (for 8.2 you'll find it as No Extension MIME Resolver) . This will add support for files with no extension by recognizing the shebang line
- Go to tools/options/editor/spellchecker and uncheck 'Script and make comments'.(not available after 8.2) This will get rid of the red squiggly lines that appear under 'usr' and other legitimate notations in the shebang line and elsewhere.
You'll get full syntax highlighting as well as the ability to right click and select 'run' which will launch your script in the built in terminal. very nice.
To get the context menu 'run' to work with your shell
- Select 'Run'/'Set Project Configuration'/'Customize'
- Click 'New' and add a name for your shell like 'bash' or 'cygwin'
- Select 'Run As' 'Script (run in command line'
- Where it says 'Php Interpreter' (or equivilent) add the path to your bash shell. e.g: C:\cygwin\bin\bash.exe
- Click 'ok'.
Also, check out the properties of the bash files and you'll find some helpful ones.
1 Comment
This is very odd. I have NB6.8beta installed with the C/C++ plugin. When I open a .sh file I do see syntax high lighting. Quotes strings show up in orange, commands are in blue.