前端之家收集整理的这篇文章主要介绍了
如何将输出附加到shell脚本/ bash中的文本文件的末尾?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用>>代替>当将
输出定向到
文件时:
your_command >> file_to_append_to
如果file_to_append_to不存在,它将被创建。
例:
$ echo "hello" > file
$ echo "world" >> file
$ cat file
hello
world
原文链接:https://www.f2er.com/bash/392772.html