码迷,mamicode.com
首页 > 系统相关 > 详细

Linux - info

时间:2015-07-30 17:07:17      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:linux   info   

基本上,info与man的用途其实差不多,都是用来查询命令的用法或者是文件的格式。但是与man page一口气输出一堆信息不同的是,info page则是将文件数据拆成一个一个的段落,每个段落用自己的页面来撰写, 并且在各个页面中还有类似网页的『超链接』来跳到各不同的页面中,每个独立的页面也被称为一个节点(node)。 所以,你可以将info page想成是文本模式的网页显示数据。

[vbird@www ~]$ info info 
File: info.info,  Node: Top,  Next: Getting Started,  Up: (dir) 
 
Info: An Introduction 
********************* 
 
The GNU Project distributes most of its on-line manuals in the "Info 
format", which you read using an "Info reader".  You are probably using 
an Info reader to read this now. 
 
....(中间省略).... 
 
   To read about expert-level Info commands, type `n‘ twice.  This 
brings you to `Info for Experts‘, skipping over the `Getting Started‘ 
chapter. 
* Menu: 
 
* Getting Started::             Getting started using an Info reader. 
* Expert Info::                 Info commands for experts. 
* Creating an Info File::       How to make your own Info file. 
* Index::                       An index of topics, commands, and variables. 
 
--zz-Info: (info.info.gz)Top, 29 lines --Top------------------------------ 
Welcome to Info version 4.8. Type ? for help, m for menu item. 

仔细的看到上面这个显示的结果,里面的第一行显示了很多的信息喔!第一行里面的数据意义为:

  • File:代表这个info page的数据是来自info.info文件所提供的;
  • Node:代表目前的这个页面是属于Top节点。 意思是info.info内含有很多信息,而Top仅是info.info文件内的一个节点内容而已;
  • Next:下一个节点的名称为Getting Started,你也可以按『N』到下个节点去;
  • Up:回到上一层的节点总揽画面,你也可以按下『U』回到上一层;
  • Prev:前一个节点。但由于Top是info.info的第一个节点,所以上面没有前一个节点的信息。
技术分享

按键 进行工作
空格键 向下翻一页
[Page Down] 向下翻一页
[Page Up] 向上翻一页
[tab] 在 node 之间移动,有 node 的地方,通常会以 * 显示。
[Enter] 当光标在 node 上面时,按下 Enter 可以进入该 node 。
b 移动光标到该 info 画面当中的第一个 node 处
e 移动光标到该 info 画面当中的最后一个 node 处
n 前往下一个 node 处
p 前往上一个 node 处
u 向上移动一层
s(/) 在 info page 当中进行搜寻
h 显示求助菜单
? 命令一览表
q 结束这次的 info page

版权声明:本文为博主原创文章,未经博主允许不得转载。

Linux - info

标签:linux   info   

原文地址:http://blog.csdn.net/zyq522376829/article/details/47150569

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!