|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们!文件内容查阅
cat:由第一行入手下手显现文件内容
tac:由最初一行入手下手显现文件内容
nl:显现的时分,特地输入行号
more:一页一页的显现文件内容
less:与more相似,可是它能够往前翻页
head:只看头几行
tail:只看开头几行
touch:文件创立与文件工夫修正
cat(concatenate)
语法:cat[-AbEnTv]
选项与参数:
-A:相称于-vET的整合参数
-b:列出行号,仅针对非空缺行做行号显现
-n:输入行号,空缺与非空缺城市列出
-E:将开头的断行字符¥显现出来
-v:列出一些看不出的特别字符
-T:将Tab按键以∧I显现出来
举例:- [root@localhosttmp]#cat/etc/issueCentOSrelease5.10(Final)Kernelonanm[root@localhosttmp]#cat-n/etc/issue1CentOSrelease5.10(Final)2Kernelonanm3[root@localhosttmp]#cat-A/etc/issueCentOSrelease5.10(Final)$Kernelonanm$$
复制代码 增加行号与打印(nl)
语法:[root@www~]#nl[-bnw]文件
选项与参数:
-b:指定行号指定的体例,次要有两种:
-ba:暗示不管是不是为空行,也一样列出行号(相似cat-n);
-bt:假如有空行,空的那一行不要列出行号(默许值);
-n:列出行号暗示的***,次要有三种:
-nln:行号在萤幕的最左方显现;
-nrn:行号在本人栏位的最右方显现,且不加0;
-nrz:行号在本人栏位的最右方显现,且加0;
-w:行号栏位的占用的位数。
举例- [root@www~]#nl/etc/issue1CentOSrelease5.3(Final)2Kernelonanm这个文件实在有三行,第三举动空缺(没有任何字节),由于他是空缺行,以是nl不会加下行号喔[root@www~]#nl-ba/etc/issue1CentOSrelease5.3(Final)2Kernelonanm3[root@www~]#nl-ba-nrz/etc/issue000001CentOSrelease5.3(Final)000002Kernelonanm000003主动在本人栏位的中央补上0了~默许栏位是六位数,假如想要改成3位数?[root@www~]#nl-ba-nrz-w3/etc/issue001CentOSrelease5.3(Final)002Kernelonanm003
复制代码 语法:more|less文件
More:
空缺键(space):代表向下翻一页;
Enter:代表向下翻『一行』;
/字串:代表在这个显现的内容傍边,向下征采『字串』这个关头字;
:f:立即显现出档名和今朝显现的行数;
q:代表立即分开more,不再显现该文件内容。
b或[ctrl]-b:代表往回翻页,不外这举措只对文件有效,对管线无用。
Less:
空缺键:向下翻动一页;
[pagedown]:向下翻动一页;
[pageup]:向上翻动一页;
/字串:向下征采『字串』的功效;
?字串:向上征采『字串』的功效;
n:反复前一个征采(与/或?有关!)
N:反向的反复前一个征采(与/或?有关!)
q:分开less这个步伐;
举例:- [root@localhosttmp]#more/etc/man.config##Generatedautomaticallyfromman.conf.inbythe……..#andtodeterminethecorrespondencebetweenextensionsanddecompressors.##MANBIN/usr/local/bin/man#--More--(31%)
复制代码 掏出后面几行(head)
语法:head[-nnumber]文件
选项与参数:
-n:前面接数字,代表行数
number默许值是10当number是正数,代表列出后面一切行数可是不包含前面number行
掏出前面几行(tail)
语法:tail[-nnumber]文件
选项与参数:
-n:前面接数字,代表行数
number默许值是10当number是负数(+number),代表该文件从number今后才会列出来
修正文件工夫|创立新文件(touch)
工夫属性
Mtime(modificationtime):当文件内容数据变动时就会更新这个工夫,内容数据指的是文件的内容,不包含文件的权限和属性
Ctime(Statetime):当文件的形态(权限和属性)变动时会更新这个工夫
Atime(accesstime):当文件内容被取用就会修正这个工夫
举例:- [root@localhost~]#ls-l--time-style=long-iso/etc/man.config默许是修正mtime-rw-r--r--1rootroot46172012-05-3020:34/etc/man.config[root@localhost~]#ls-l--time=ctime--time-style=long-iso/etc/man.config-rw-r--r--1rootroot46172014-02-1410:06/etc/man.config[root@localhost~]#ls-l--time=atime--time-style=long-iso/etc/man.config-rw-r--r--1rootroot46172014-02-2110:19/etc/man.config
复制代码
语法:touch[-acdmt]文件
选项与参数:
-a:仅修正会见工夫atime
-c:仅修正文件的工夫,若该文件不存在则不创立新文件
-d:前面可接欲修正的日期,也能够利用—date=”工夫或日期”
-m:仅修正mtime
-t:前面能够接欲修正的工夫
次要功效:
创立一个空文件
修正文件日期(mtime,atime)
举例:- [root@localhosttmp]#cp-a/etc/man.config./newman.config[root@localhosttmp]#ls-l--time-style=long-isonewman.config指准时间格局-rw-r--r--1rootroot46172012-05-3020:34newman.config[root@localhosttmp]#touch-m-t0709150203newman.config//只修正mtime[root@localhosttmp]#ls-l--time-style=long-isonewman.config-rw-r--r--1rootroot46172007-09-1502:03newman.config[root@localhosttmp]#ls-l--time=atime--time-style=long-isonewman.config//只修正atime-rw-r--r--1rootroot46172014-02-2110:33newman.config[root@localhosttmp]#touch-a-t0809150203newman.config[root@localhosttmp]#ls-l--time=atime--time-style=long-isonewman.config-rw-r--r--1rootroot46172008-09-1502:03newman.config[root@localhosttmp]#[root@localhosttmp]#touch-d"2daysago"newman.config//默许修正atime与mtime[root@localhosttmp]#ls-l--time=atime--time-style=long-isonewman.config-rw-r--r--1rootroot46172014-02-1910:36newman.config[root@localhosttmp]#ls-l--time-style=long-isonewman.config-rw-r--r--1rootroot46172014-02-1910:36newman.config
复制代码 如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们! |
|