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,802 times
0
joeldesante
- 107
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,444