Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

第五部分* 的描述中应为 * 而非 \* #1368

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions notes/Linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
* [孤儿进程](#孤儿进程)
* [僵尸进程](#僵尸进程)
* [参考资料](#参考资料)
<!-- GFM-TOC -->
<!-- GFM-TOC -->


## 前言
Expand Down Expand Up @@ -785,7 +785,7 @@ $ tar [-z|-j|-J] [xv] [-f 已有的 tar 文件] [-C 目录] ==解压缩

- 命令历史:记录使用过的命令
- 命令与文件补全:快捷键:tab
- 命名别名:例如 ll 是 ls -al 的别名
- 命名别名:例如 ll 是 ls -l 的别名
- shell scripts
- 通配符:例如 ls -l /usr/bin/X\* 列出 /usr/bin 下面所有以 X 开头的文件

Expand Down
4 changes: 2 additions & 2 deletions notes/正则表达式.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* [九、前后查找](#九前后查找)
* [十、嵌入条件](#十嵌入条件)
* [参考资料](#参考资料)
<!-- GFM-TOC -->
<!-- GFM-TOC -->


## 一、概述
Expand Down Expand Up @@ -112,7 +112,7 @@ abc[^0-9]
## 五、重复匹配

- **\+** 匹配 1 个或者多个字符
- **\** * 匹配 0 个或者多个字符
- ***** 匹配 0 个或者多个字符
- **?** 匹配 0 个或者 1 个字符

**应用**
Expand Down