测试
[root@k81 ~]# cat > hello.sh <<EOF
#!/bin/bash
echo “hello world!”
EOF
[root@k81 ~]# sh hello.sh
hello world!
All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.
[root@k81 ~]# cat > hello.sh <<EOF
#!/bin/bash
echo “hello world!”
EOF
[root@k81 ~]# sh hello.sh
hello world!