grep 詳解

grep

是一種強大的文本搜索工具,它能使用正則表達式搜索文本,並把匹配的行打印出來。(global search regular expression(RE) and print out the line,全面搜索正則表達式並把行打印出來)node

常見用法

1. ps -ef | grep ****    配合 ps 命令 用的比較多。正則表達式

2. grep -Ev "^#|^$" /etc/redis.conf  查看redis配置文件的不以#開頭 或者是空行 的內容 redis

 如下就是輸出的內容express

protected-mode no
port 6379
tcp-backlog 511
timeout 0
tcp-keepalive 300
daemonize yes
supervised no
pidfile /var/run/redis_6379.pid
loglevel notice
logfile /var/log/redis/redis.log
databases 16
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error no
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
dir /var/lib/redis
slave-serve-stale-data yes
slave-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
slave-priority 100
appendonly no
appendfilename "appendonly.aof"
appendfsync everysec
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes
lua-time-limit 5000
slowlog-log-slower-than 10000
slowlog-max-len 128
latency-monitor-threshold 0
notify-keyspace-events ""
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-size -2
list-compress-depth 0
set-max-intset-entries 512
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
hll-sparse-max-bytes 3000
activerehashing yes
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit slave 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
hz 10
aof-rewrite-incremental-fsync yes
redis.conf 配置內容

若是先嫌顯示的太多,能夠在後面再加 | grep -E "bind|port|tcp-backlog|daemonize|pidfile|loglevel|logfile|dir|requirepass|appendonly|appendfsync" 就會顯示你要的含有關鍵詞的內容app

3. 其餘方法我不經常使用,就先不寫。less

參數

  • -a 或 --text : 不要忽略二進制的數據。
  • -A<顯示行數> 或 --after-context=<顯示行數> : 除了顯示符合範本樣式的那一列以外,並顯示該行以後的內容。
  • -b 或 --byte-offset : 在顯示符合樣式的那一行以前,標示出該行第一個字符的編號。
  • -B<顯示行數> 或 --before-context=<顯示行數> : 除了顯示符合樣式的那一行以外,並顯示該行以前的內容。
  • -c 或 --count : 計算符合樣式的列數。
  • -C<顯示行數> 或 --context=<顯示行數>或-<顯示行數> : 除了顯示符合樣式的那一行以外,並顯示該行以前後的內容。
  • -d <動做> 或 --directories=<動做> : 當指定要查找的是目錄而非文件時,必須使用這項參數,不然grep指令將回報信息並中止動做。
  • -e<範本樣式> 或 --regexp=<範本樣式> : 指定字符串作爲查找文件內容的樣式。
  • -E 或 --extended-regexp : 將樣式爲延伸的普通表示法來使用。【就是能夠匹配多個,匹配多個用 | 符號】
  • -f<規則文件> 或 --file=<規則文件> : 指定規則文件,其內容含有一個或多個規則樣式,讓grep查找符合規則條件的文件內容,格式爲每行一個規則樣式。
  • -F 或 --fixed-regexp : 將樣式視爲固定字符串的列表。
  • -G 或 --basic-regexp : 將樣式視爲普通的表示法來使用。
  • -h 或 --no-filename : 在顯示符合樣式的那一行以前,不標示該行所屬的文件名稱。
  • -H 或 --with-filename : 在顯示符合樣式的那一行以前,表示該行所屬的文件名稱。
  • -i 或 --ignore-case : 忽略字符大小寫的差異。
  • -l 或 --file-with-matches : 列出文件內容符合指定的樣式的文件名稱。
  • -L 或 --files-without-match : 列出文件內容不符合指定的樣式的文件名稱。
  • -n 或 --line-number : 在顯示符合樣式的那一行以前,標示出該行的列數編號。
  • -q 或 --quiet或--silent : 不顯示任何信息。
  • -r 或 --recursive : 此參數的效果和指定"-d recurse"參數相同。
  • -s 或 --no-messages : 不顯示錯誤信息。
  • -v 或 --revert-match : 顯示不包含匹配文本的全部行。【取相反的意思】
  • -V 或 --version : 顯示版本信息。
  • -w 或 --word-regexp : 只顯示全字符合的列。
  • -x --line-regexp : 只顯示全列符合的列。
  • -y : 此參數的效果和指定"-i"參數相同。
相關文章
相關標籤/搜索