Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 git 的帮助文档的输出重定向到一个文本文件,命令如下:
git help clone > gitclone.txt
但是我发现文档中所有的粗体字,都被两次写入了我的 gitclone.txt。
IE:
文档中的NAME,在 gitclone.txt 中更改为 NNAAMMEE
我不知道为什么会这样,有人可以帮助我吗?非常感谢。
您可以使用col -b删除退格键。
col -b
git help clone | col -b > gitclone.txt