0

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.

1 Answers1

2

You have to apply exec permission to the file. You can do this with:

$ chmod +x start.sh
L. D. James
  • 25,444