シェルスクリプト

#!/bin/sh
echo "Hello World!"

./hello.sh で動かします。
[vagrant@localhost app]$ ./hello.sh
-bash: ./hello.sh: 許可がありません

permission denied.

[vagrant@localhost app]$ cat -e hello.sh
#!/bin/sh^M$
echo “Hello World!”

改行コードがおかしいみたい。
[vagrant@localhost app]$ sed -i ‘s/\r//’ hello.sh
[vagrant@localhost app]$ ./hello.sh
Hello World!