diff --git a/Linux_man_cn/apropos.md b/Linux_man_cn/apropos.md index 2ad0819..0dbe60f 100644 --- a/Linux_man_cn/apropos.md +++ b/Linux_man_cn/apropos.md @@ -1,14 +1,12 @@ -# apropos +# **apropos** ## 说明 -**apropos命令** 在一些特定的包含系统命令的简短描述的数据库文件里查找关键字,然后把结果送到标准输出。  +**apropos命令** 在一些特定的包含系统命令的简短描述的数据库文件里查找文档,结果作为标准输出 如果你不知道完成某个特定任务所需要命令的名称,可以使用一个关键字通过Linux apropos实用程序来搜索它。该实用程序可以搜索关键字并且显示所有包含匹配项的man页面的简短描述。另外,使用man实用程序和-k(关键字)选项,可以得到和用Linux apropos实用程序相同的结果(实际上是相同的命令) - - -```info +```bash -d, --debug 输出调试信息 -v, --verbose 输出详细的警告信息 -e, --exact 对每个关键词都进行严格匹配的搜索 @@ -16,11 +14,11 @@ -w, --wildcard 关键词里包含通配符 -a, --and 要求所有的关键词都同时匹配 -l, --long 不要把输出按终端宽度截断 --C, --config-file=文件 使用该用户设置文件 --L, --locale=区域 定义本次搜索所使用的区域设置 --m, --systems=系统 use manual pages from other systems --M, --manpath=路径 设置搜索手册页的路径为“路径”,默认使用$MANPATH环境变量 --s, --sections=列表, --section=列表 只查找指定的手册section +-C, --config-file=文件 使用该用户设置文件 +-L, --locale=区域 定义本次搜索所使用的区域设置 +-m, --systems=系统 use manual pages from other systems +-M, --manpath=路径 设置搜索手册页的路径为“路径”,默认使用$MANPATH环境变量 +-s, --sections=列表, --section=列表 只查找指定的手册section 返回值:返回0表示成功,1表示用法、语法或配置文件错误,2表示操作错误,16表示没有找到匹配的内容 ``` diff --git a/Linux_man_cn/extundelete.md b/Linux_man_cn/extundelete.md index 39f57a0..9eff236 100644 --- a/Linux_man_cn/extundelete.md +++ b/Linux_man_cn/extundelete.md @@ -2,7 +2,7 @@ 用法:extundelete [options] [--] device-file -```info +```bash --superblock Print contents of superblock in addition to the rest. If no action is specified then this option is implied. --journal Show content of journal. @@ -46,4 +46,3 @@ Actions: The restored files are created in a directory named 'RECOVERED_FILES/' by default. ``` - diff --git a/Linux_man_cn/fio.md b/Linux_man_cn/fio.md index cb21cec..c5c40a9 100644 --- a/Linux_man_cn/fio.md +++ b/Linux_man_cn/fio.md @@ -2,7 +2,7 @@ linux和Windows都推荐使用FIO工具进行测试块存储性能,测试前确保已经4k对齐,测试裸盘可以获取真实块存储盘性能。但是会破坏文件系统结构 -```info +```bash fio [options] [job options] --debug=options Enable debug logging. May be one/more of: process,file,io,mem,blktrace,verify,random,parse, @@ -68,4 +68,4 @@ fio -direct=1 -iodepth=64 -rw=read -ioengine=libaio -bs=1024k -size=1G -numjobs= fio -direct=1 -iodepth=1 -rw=randwrite -ioengine=libaio -bs=4k -size=1G -numjobs=1 -group_reporting -filename=iotest -name=Rand_Write_Latency_Testing # 测试随机写延时 fio -direct=1 -iodepth=1 -rwfio -direct=1 -iodepth=1 -rw=randread -ioengine=libaio -bs=4k -size=1G -numjobs=1 -group_reporting -filename=iotest -name=Rand_Read_Latency_Testingrandwrite -ioengine=libaio -bs=4k -size=1G -numjobs=1 -group_reporting -filename=iotest -name=Rand_Write_Latency_Testing # 测试随机读延时 -``` \ No newline at end of file +``` diff --git a/Linux_man_cn/lvm.md b/Linux_man_cn/lvm.md index cf53cc8..2ee4b72 100644 --- a/Linux_man_cn/lvm.md +++ b/Linux_man_cn/lvm.md @@ -261,7 +261,7 @@ Labels on physical volume "/dev/sdb2" successfully wiped -```info +```bash -s 以短格式输出 -m 显示PE到LE的映射 ``` diff --git a/Linux_man_cn/nc.md b/Linux_man_cn/nc.md index daf55d8..8e629b3 100644 --- a/Linux_man_cn/nc.md +++ b/Linux_man_cn/nc.md @@ -27,9 +27,7 @@ ```bash nc -v -z -w2 192.168.0.3 1-100 # TCP端口扫描,扫描192.168.0.3 的端口 范围是 1-100 -nc -u -z -w2 192.168.0.1 1-1000 # 扫描UDP端口,扫描192.168.0.3 的端口 范围是 1-1000 +nc -u -z -w2 192.168.0.1 1-1000 # 扫描UDP端口,扫描192.168.0.3 的端口 范围是 1-1000 nc -nvv 192.168.0.1 80 # 扫描指定端口,扫描 80端口 ``` - - diff --git a/Linux_man_cn/pushd.md b/Linux_man_cn/pushd.md index 5b85773..7472293 100644 --- a/Linux_man_cn/pushd.md +++ b/Linux_man_cn/pushd.md @@ -6,7 +6,7 @@ -```info +```bash -n 只加入目录到堆叠中,不进行cd操作 +N 删除从左到右的第n个目录,数字从0开始 -N 删除从右到左的第n个目录,数字从0开始 diff --git a/Linux_man_cn/renice.md b/Linux_man_cn/renice.md index 4fbc3ce..f4339cb 100644 --- a/Linux_man_cn/renice.md +++ b/Linux_man_cn/renice.md @@ -6,7 +6,7 @@ -```info +```bash renice [-n] <优先级> [-p|--pid] ... renice [-n] <优先级> -g|--pgrp ... renice [-n] <优先级> -u|--user <用户>... diff --git a/Linux_man_cn/sort.md b/Linux_man_cn/sort.md index 0358c26..08e1e61 100644 --- a/Linux_man_cn/sort.md +++ b/Linux_man_cn/sort.md @@ -77,7 +77,7 @@ sort file1 file1 file2 | uniq -u # 两个未排序文件的差集 sort file1 file2 | uniq -u # 两个未排序文件的对称差集 # 忽略相同行使用-u选项或者uniq -sort -u sort.txt +sort -u sort.txt uniq sort.txt sort -nk 2 -t: sort.txt # 将:字符作为分隔符,按其后的第二个字符的数字从小到大排序 @@ -97,4 +97,3 @@ FStart.CStart Modifie,FEnd.CEnd Modifier comment ``` - diff --git a/Linux_man_cn/type.md b/Linux_man_cn/type.md index 285ea42..68012f3 100644 --- a/Linux_man_cn/type.md +++ b/Linux_man_cn/type.md @@ -1,4 +1,4 @@ -# type +# **type** ## 说明 @@ -28,5 +28,3 @@ type ls type -a cd type -a grep ``` - - diff --git a/Linux_man_cn/yum.md b/Linux_man_cn/yum.md index 665a0bf..33351c7 100644 --- a/Linux_man_cn/yum.md +++ b/Linux_man_cn/yum.md @@ -7,7 +7,7 @@ ## 选项 -```info +```bash 用法: yum [options] COMMAND List of Commands: