I wrote a simple .sh file to be executed on an Alpine Linux environment. Contents as below
#!/bin/sh
echo "Hello World"
But I'm always getting this message while trying to run
localhost:/opt# ./helloWorld.sh
-ash: ./helloWorld.sh: not found
localhost:/opt# getfacl helloWorld.sh
# file: helloWorld.sh
# owner: root
# group: root
user::rwx
group::r-x
other::r-x
Not able to figure out what I'm missing here to make this work. Any leads or help would be greatly appreciated. Thanks in advance.