jetsung Linux 命令行向文件中写入内容 cat: 直接添加内容 cat > test.txt <<EOF 123 EOF # 追加方式使用 cat >> tee: 添加后,会显示文件内容。 ee test.txt <<EOF 123 EOF # 追加方式使用 tee -a