[root@k81 ~]# cat > hello.sh <<EOF
#!/bin/bash
echo “hello world!”
EOF

[root@k81 ~]# sh hello.sh
hello world!