I'm trying to execute test.sh on terminal.
My test.sh is in the /Home/monty folder and I made it executable:
chmod 755 test.shI try to execute it using: $./test.shI get an error:
bash: ./test.sh: /usr/bin/bash: bad interpreter: No such file or directoryI tried to do this on terminal:
$ PATH=$PATH:/Home/montyBut to no avail. How do I solve this issue?