如何将bashrc的输出附加到txtfile

时间:2015-10-22 01:06:21

标签: bash

在Linux终端中,将bashrc的输出附加到文本文件(例如mybash.txt)的命令字符串是什么我知道附加你使用双胡萝卜'>>'但不知道如何将bashrc的输出附加到文本文件中。

1 个答案:

答案 0 :(得分:1)

您可以使用cat file >> outfile。如果您只想阅读文件的开头,可以使用:

head -N file >> outfile # where N is the numbers of lines you want to write

对于文件的最后一部分,您可以使用:

tail -N file >> outfile # where N is the numbers of lines you want to write