echo cat tee 修改文件的两种方式

# ------------echo cat tee修改文件的方式------------
cat << "EOF" > test.txt
#添加的内容
EOF

cat > test.txt << "EOF"
#添加的内容
EOF

>是内容导向符等于覆盖,>>是添加到行末
以上两种方法效果是一样的
EOF是标识,可以用任何字符代替

echo text > test.file
echo "text" > test.file


tee test.file << EOF
#添加的内容
EOF
添加-a设置为行尾追加模式
# ------------end------------
huan

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: