Issue
I have installed the ShellEd
plugin in eclipse. Whenever I run a bash script it runs it using dash
even if I specify interpreter directive #! /bin/bash
at the top of the script.
How do I change this behavior?
Solution
THere should be an option to set the bash interpreter as follows:
Window->Preferences-><the_plugin_name>->Interpreter.
you need to set you bash interpreter path here (/bin/bash
).
Eclipse will use the value you set here to execute your program.
Answered By - slayedbylucifer
Answer Checked By - Gilberto Lyons (JavaFixing Admin)