无限制地从默认的linux命令行

时间:2015-08-28 13:39:07

标签: linux bash command-line debian

我希望从linux命令行增加滚动缓冲区的默认大小。它是没有gui的Debian服务器。

我在bashrc中找不到相关选项,我甚至不知道是否有其他配置文件用于默认提示alt + f1 alt + f2 ...

1 个答案:

答案 0 :(得分:4)

您可以使用内核选项更改回滚缓冲区大小,如下所述:https://wiki.archlinux.org/index.php/Scrollback_buffer

但是,如果您对命令的输出感兴趣,但同时您希望以交互方式观察命令的进度,我建议使用tee

command | tee out.file

或者如果你想附加到文件使用

command | tee -a out.file

tee很好!用它! :)