记录linux操作命令日志
在linux终端下,为方便检查操作中可能出现的错误,以及避免屏幕滚屏的限制,我们可以把操作日志记录下来.常用的工具有screen,script,以及tee等. 1. screen — screen manager with VT100/ANSI terminal emulatio > screen -L 2. script — make typescript of terminal session > script 3. tee – read from standard input and write to standard output and files 这个命令可以读取终端输入输出到终端或者文件中,有时候可以用来记录make等命令可能产生的输出到终端的大量内容输出到文件中去.这样可以方便记录这些命令的日志. > make 2>&1 | tee make.log PS: 2>&1是为了记录错误日志 $ cat screenlog.0 | col -b > screenlog or $ cat typescript | col -b > scriptlog
|
|
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |