Commit 62b72112 authored by frank.chen's avatar frank.chen

gerger

parent d6a3bdbf
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
### /etc/profile ### /etc/profile
``` ```
export GOROOT=/usr/local/go
PATH=/usr/local/go/bin:$PATH PATH=/usr/local/go/bin:$PATH
export GOPROXY=https://goproxy.cn,direct export GOPROXY=https://goproxy.cn,direct
``` ```
......
## 参数
### 排除
```
grep -v 'mmm\|nnn' abc.txt
```
### 或
```
grep -E "word1|word2|word3" file.txt
```
### 结尾
```
ls |grep log$
```
## 常用日志格式
- 广告落盘日志
```
grep pos_id\":1277
```
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment