I want to run a shell script called start.sh
on my Ubuntu 16.04 LTS server. So I type ./start.sh
and it wont run. I'm new, just putting that out there.
Asked
Active
Viewed 5,754 times
0

joeldesante
- 107
- 1
- 2
- 6
1 Answers
2
You have to apply exec permission to the file. You can do this with:
$ chmod +x start.sh

L. D. James
- 25,036
-
I thought the name was familiar. It's a pleasure! – L. D. James Oct 23 '16 at 02:00