Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_git_md_linux
提交
3b632c35
S
skill_tree_git_md_linux
项目概览
CSDN 技术社区
/
skill_tree_git_md_linux
通知
15
Star
4
Fork
3
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_git_md_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
3b632c35
编写于
1月 27, 2022
作者:
F
feilong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加grep
上级
eb220109
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
81 addition
and
0 deletion
+81
-0
data/3.gml高阶/1.Linux实用命令/1.grep命令/config.json
data/3.gml高阶/1.Linux实用命令/1.grep命令/config.json
+11
-0
data/3.gml高阶/1.Linux实用命令/1.grep命令/exercise_01.json
data/3.gml高阶/1.Linux实用命令/1.grep命令/exercise_01.json
+8
-0
data/3.gml高阶/1.Linux实用命令/1.grep命令/exercise_01.md
data/3.gml高阶/1.Linux实用命令/1.grep命令/exercise_01.md
+62
-0
未找到文件。
data/3.gml高阶/1.Linux实用命令/1.grep命令/config.json
0 → 100644
浏览文件 @
3b632c35
{
"node_id"
:
"gml-66baba204f5042a79ebc82bc2a26ae32"
,
"keywords"
:
[],
"keywords_must"
:
[
"Linux命令"
],
"keywords_forbid"
:
[],
"children"
:
[],
"export"
:
[
"exercise_01.json"
]
}
\ No newline at end of file
data/3.gml高阶/1.Linux实用命令/1.grep命令/exercise_01.json
0 → 100644
浏览文件 @
3b632c35
{
"type"
:
"code_options"
,
"author"
:
"幻灰龙"
,
"source"
:
"exercise_01.md"
,
"notebook_enable"
:
false
,
"depends"
:
[]
}
\ No newline at end of file
data/3.gml高阶/1.Linux实用命令/1.grep命令/exercise_01.md
0 → 100644
浏览文件 @
3b632c35
# 实用Linux命令掌握20%:grep
Linux 命令很多,掌握最实用的一批命令,对于每个实用命令,又只需掌握20%最高频操作。
**本节知识**
:
假设文件
`1.txt`
的文本如下(可以利用
`touch`
命令和
`vi`
命令组合创建):
```
bash
1. hello world
2. wold hello
3. nothing is important
4. i like movie movie
hello world
wold hello
nothing is important
i like movie movie
```
`grep`
命令用来查找文本,这里是最常用的几个操作例子:
*
查找文件
`1.txt`
中含有
`"hello"`
字符串的行:
`grep hello 1.txt`
*
使用正则表达式查找文件
`1.txt`
中含有数字的行:
`grep -E "\d." 1.txt`
*
查找文件
`1.txt`
中不包含
`"hello"`
字符串的行:
`grep -v hello 1.txt`
*
查找文件
`1.txt`
中含有
`"movie"`
字符串的行以及它前面的3行:
`grep movie -B 3 1.xt`
*
查找文件
`1.txt`
中含有
`"movie"`
字符串的行以及它后面的3行:
`grep movie -A 3 1.xt`
*
查找文件
`1.txt`
中含有
`"4."`
字符串的行以及它前后3行:
`grep 4. -C 3 1.txt`
**本节任务**
:
1.
请在
[
线上Linux环境
](
https://edu.csdn.net/lab/36675?targetLesson=2692
)
里练习上述
`grep`
命令。
2.
以下对命令
`grep`
描述错误的是?
## 答案
```
bash
`
grep
`
命令不能对文件夹递归查找,例如
`
grep
"text"
.
-r
-n
`
```
## 选项
### A
```
bash
如果要查找包含某个字符串的行的前后3行
可以使用
`
grep
-C
3 xxx.log
`
命令
C 表示 center
```
### B
```
bash
`
grep
`
命令的匹配参数默认是普通的通配符
`
grep
`
命令的通过
`
-E
`
选项来指定正则表达式匹配
```
### C
```
bash
`
grep
`
命令可以通过通配符查找多个文件,例如
`
grep
hello
*
.txt
`
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录