Linux学习笔记——学会查看帮助文档

man 命令用于查看帮助文档,其格式为:man  [命令] 示例如下:

[root@centos7 ~]# man ls
LS(1)                                                                        User Commands                                                                        LS(1)

NAME
       ls - list directory contents

SYNOPSIS
       ls [OPTION]... [FILE]...

DESCRIPTION
       List information about the FILEs (the current directory by default).  Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.

       Mandatory arguments to long options are mandatory for short options too.

       -a, --all
              do not ignore entries starting with .

       -A, --almost-all
              do not list implied . and ..

       --author
              with -l, print the author of each file

       -b, --escape
              print C-style escapes for nongraphic characters

       --block-size=SIZE
              scale sizes by SIZE before printing them; e.g., '--block-size=M' prints sizes in units of 1,048,576 bytes; see SIZE format below

       -B, --ignore-backups
              do not list implied entries ending with ~

       -c     with  -lt:  sort  by,  and  show,  ctime (time of last modification of file status information); with -l: show ctime and sort by name; otherwise: sort by
              ctime, newest first

如果不能完整显示,可以按 PgDn 键下翻页。退出帮助文档,按字母键q

猜你喜欢

转载自blog.csdn.net/zhaoyishi/article/details/83661702
今日推荐