访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux手册(manual)使用

时间:2019-07-01

linux命令大全_linux命令大全 root_linux命令大全 关机

Executable programs or shell commands——普通的命令

System calls (functions provided by the kernel)——系统调用

Library calls (functions within program libraries)——库函数

Special files (usually found in /dev)——特殊文件

File formats and conventions eg /etc/passwd——文件格式

Games——游戏

linux命令大全 关机_linux命令大全 root_linux命令大全

这些参数被看做没有dontdelete特性, 问题主要是我们可以detele它们. 实际上safari 2.x存在更多的问题(删除没有引用的变量e.g delete 1)会抛异常, function的声明会创建可删除属性(不包括变量声名), 变量声明在eval中变为不可删除(除了function声明).。2 the following precautionary information, or itsequivalent (as a minimum), shall be prominently dis-played in legible print on all packages of filler metal,including individual unit packages enclosed within alarger package。- choose this option only if you have another ubuntu os (e.g. ubuntu 10.10) and you want to upgrade it to ubuntu 11.04. your personal files will be saved, but you will have to reinstall most of your packages. the general system settings will be erased。

System administration commands (usually only for root)——系统管理用的命令

Kernel routines [Non standard]——内核

我们再看一下man –help的结果:

man [-adfhktwW] [section] [-M path] [-P pager] [-S list]
    [-m system] [-p string] name ...
  a : find all matching entries
  c : do not use cat file
  d : print gobs of debugging information
  D : as for -d, but also display the pages
  f : same as whatis(1)
  h : print this help message
  k : same as apropos(1)
  K : search for a string in all pages
  t : use troff to format pages for printing
  w : print location of man page(s) that would be displayed
      (if no name given: print directories that would be searched)
  W : as for -w, but display filenames only
  C file   : use `file' as configuration file
  M path   : set search path for manual pages to `path'
  P pager  : use program `pager' to display pages
  S list   : colon separated section list
  m system : search for alternate system's man pages
  p string : string tells which preprocessors to run
               e - [n]eqn(1)   p - pic(1)    t - tbl(1)
               g - grap(1)     r - refer(1)  v - vgrind(1)

man后面可以跟-acdDfhkKtwW这些(至于为什么方括号内与下面的列表不一致,这个我也没有搞懂),跟-C是加文件,加-M是设置man查询文件所在地址,加-P是显示手册的第几页,加-S用冒号隔开部分列表,加-m查询可替换的系统手册页,加-p用字符串操作预处理器

linux命令大全_linux命令大全 root_linux命令大全 关机

假设最简单的

man read

来查看read这个命令,会看到类似vi编辑器的界面。当然啦,它的快捷命令与vi基本类似。不同之处在于vi可以进入插入模式进行文本改写,而这里不可以linux命令大全,即少了那些用来编辑的命令。

个人感觉用到最多的几个快捷命令是:

f(或键盘上“PgDn”)——向后翻页

b(或键盘上“PgUp”)——向前翻页

linux命令大全 root_linux命令大全 关机_linux命令大全

d——向后翻半页

u——向前翻半页

g——跳到文章开头

G——跳到文章结尾

退出的操作仍旧是q(quit退出)。

不得不说用了man之后比help舒服了许多。

最后,推荐两个在线查询手册命令的网站:

man.he.net

linux.die.net/man/