I am writing a shell script (I am a complete newb) that is supposed to call another script upon booting up linux
Code:
#!/bin/sh
/work/projects/liferay/tomcat/bin/ . startup.sh &
I am receiving the following error:
/work/projects/liferay/tomcat/bin/: Permission denied
The second line of code above is to start the Tomcat service and is supposed to start the service and then boot up Firefox showing Liferay (An open source CMS built on JAVA).
I have checked ALL the permissions on that particular folder (bin) and have even blown them wide open starting at the root dir of /work.
Any help?