终端常用工具命令
grep,awk,sed,lsof,curl,wget,tail,head,less,find,ssh,kill命令详解(更新中。。。)
grep命令
说明
Linux grep 命令用于查找文件里符合条件的字符串。
grep 指令用于查找内容包含指定的范本样式的文件,如果发现某文件的内容符合所指定的范本样式,预设 grep 指令会把含有范本样式的那一列显示出来。
若不指定任何文件名称,或是所给予的文件名为 -
,则 grep 指令会从标准输入设备读取数据。
grep --help
使用: grep [OPTION]... PATTERN [FILE]...
Search for PATTERN in each FILE or standard input.
PATTERN is, by default, a basic regular expression (BRE).
示例: grep -i 'hello world' menu.h main.c
PATTERN:要匹配的内容
Regexp selection and interpretation:
-E, --extended-regexp PATTERN 扩展正则表达式 (ERE)
-F, --fixed-strings PATTERN is a set of newline-separated fixed strings
-G, --basic-regexp PATTERN 基本的正则表达式 (BRE)
-P, --perl-regexp PATTERN Perl 正则表达式
-e, --regexp=PATTERN 使用 PATTERN 来匹配
-f, --file=FILE 从文件获取PATTERN
-i, --ignore-case 忽略大小写差异
-w, --word-regexp 强制匹配整个单词
-x, --line-regexp 强制匹配一整行的内容
-z, --null-data a data line ends in 0 byte, not newline
Miscellaneous:
-s, --no-messages 不显示错误信息
-v, --invert-match 显示不包含匹配文本的所有行
-V, --version 显示版本信息
--help 显示帮助信息
Output control:
-m, --max-count=NUM 限制最大匹配的数量
-b, --byte-offset 在显示符合样式的那一行之前,标示出该行第一个字符的编号
-n, --line-number 在显示符合样式的那一行之前,标示出该行的列数编号
--line-buffered flush output on every line
-H, --with-filename 在显示符合样式的那一行之前,表示该行所属的文件名称
-h, --no-filename suppress the file name prefix on output
--label=LABEL use LABEL as the standard input file name prefix
-o, --only-matching 只显示匹配PATTERN的部分
-q, --quiet, --silent 不显示任何信息
--binary-files=TYPE assume that binary files are TYPE;
TYPE is 'binary', 'text', or 'without-match'
-a, --text 不要忽略二进制的数据
-I 列出文件内容符合指定的样式的文件名称
-d, --directories=ACTION 当指定要查找的是目录而非文件时,必须使用这项参数,否则grep指令将回报信息并停止动作
ACTION is 'read', 'recurse', or 'skip'
-D, --devices=ACTION how to handle devices, FIFOs and sockets;
ACTION is 'read' or 'skip'
-r, --recursive 等价于 --directories=recurse 递归查找文件夹下的所有文件
-R, --dereference-recursive
likewise, but follow all symlinks
--include=FILE_PATTERN
search only files that match FILE_PATTERN
--exclude=FILE_PATTERN
skip files and directories matching FILE_PATTERN
--exclude-from=FILE skip files matching any file pattern from FILE
--exclude-dir=PATTERN directories that match PATTERN will be skipped.
-L, --files-without-match 列出文件内容不符合指定的样式的文件名称
-l, --files-with-matches 列出文件内容符合指定的样式的文件名称
-c, --count 显示匹配的数量
-T, --initial-tab make tabs line up (if needed)
-Z, --null print 0 byte after FILE name
Context control:
-B, --before-context=NUM 列出匹配的内容之前的几行内容
-A, --after-context=NUM 列出匹配的内容之后的几行内容
-C, --context=NUM 列出匹配的内容前后几行的内容
-NUM same as --context=NUM
--group-separator=SEP use SEP as a group separator
--no-group-separator use empty string as a group separator
--color[=WHEN],
--colour[=WHEN] use markers to highlight the matching strings;
WHEN is 'always', 'never', or 'auto'
-U, --binary do not strip CR characters at EOL (MSDOS/Windows)
-u, --unix-byte-offsets report offsets as if CRs were not there
(MSDOS/Windows)
示例
- 查找test1.txt文件中的数字
grep -i "^[0-9]*$" test1.txt
- 查找test1.txt中包含test的文本
grep -i test test1.txt
- 显示test1.txt文本中匹配了test的后2行内容
grep -i test -A 2 test1.txt
- 递归查找
/home/command_test/
目录下包含test文本的文件及内容grep -i test -r /home/command_test/
awk命令
说明
AWK 是一种处理文本文件的语言,是一个强大的文本分析工具。
之所以叫 AWK 是因为其取了三位创始人 Alfred Aho,Peter Weinberger, 和 Brian Kernighan 的 Family Name 的首字符。
Usage: awk [POSIX or GNU style options] -f progfile [–] file …
Usage: awk [POSIX or GNU style options] [–] ‘program’ file …
POSIX options: GNU long options: (standard)
-f progfile –file=progfile
-F fs –field-separator=fs
-v var=val –assign=var=val
Short options: GNU long options: (extensions)
-b –characters-as-bytes
-c –traditional
-C –copyright
-d[file] –dump-variables[=file]
-e ‘program-text’ –source=’program-text’
-E file –exec=file
-g –gen-pot
-h –help
-L [fatal] –lint[=fatal]
-n –non-decimal-data
-N –use-lc-numeric
-O –optimize
-p[file] –profile[=file]
-P –posix
-r –re-interval
-S –sandbox
-t –lint-old
-V –version
sed命令
说明
sed 是利用脚本来处理文本文件。
sed 可依照脚本的指令来处理、编辑文本文件。
sed 主要用来自动编辑一个或多个文件、简化对文件的反复操作、编写转换程序等。