cat EOF 使用一例

发布时间:2019-11-19编辑:脚本学堂
cat EOF 使用一例,用下面方法很简单的按格式写入文本:

cat EOF 使用一例,用下面方法很简单的按格式写入文本:
 

复制代码 代码如下:

#!/bin/sh

cat <<EOF >>/etc/hosts
Please Write your message want to attach here.
# This is just a test.

127.0.0.1 localhost
EOF

#-----------
echo 'test' >> /etc/hosts

sed...