linux向文件末尾添加一行的命令

cat

cat >> lb.txt<<EOF
> hellow
> world
>EOF

echo

echo "hellow
world" >> lb.txt

echo -e "hellow\nworld" >> lb.txt
注释:"-e"表示激活转义字符,"\n"表示换行,"\t"表示Tab键

cat >> lb.txt
hellow
world
注释:使用Ctrl+c或Ctrl+d结束输入

tee

tee -a /etc/hosts <<EOF
127.0.0.1 iam.api.marmotedu.com
EOF