摘要:
1. more的三种用法 more filename // 显示filename文件内容,显示一屏,按空格显示下一屏,回车下一行 command | more // more将command命令的输出分页显示 more < filename // more从标准输入读取要分页显示的内容,标准输入被重定向到文件 阅读全文
摘要:
先看一段代码:代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--#include<iostream>usingnamespacestd;classBase{public:virtualvoidfun(){cout<<"Bas... 阅读全文