是否可以清除最后一条命令的输出,而不是滚动浏览数百行输出以查看先前的命令历史记录?例如,执行后ls
,清除其输出,因为您不再需要它。
编辑:
这不是您的平常操作clear
或ctrl+L
操作。这个想法是在历史记录中向后滚动以查找上一个命令的输出,但是除非我真的想要,否则不必滚动过去ls
,或cat
或sudo apt-get install
输出。它可能看起来像这样:
cat fileIWantToRemember
ls directoryIWantToForget
# some command that wipes the output of ls
# scroll back to see the output of cat immediately
terminal emulator output folding