markdown 使用bash和regex在一行中查找并终止进程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 使用bash和regex在一行中查找并终止进程相关的知识,希望对你有一定的参考价值。

# Find and kill a process in one line using bash and regex

## Find pid by keyword
```
pgrep -f keyword
```

## Kill pid from the result of find pid by keyword
```
kill -9 $(pgrep -f keyword)
```

## Example kill all processed puma 
```
kill -9 $(pgrep -f puma)
```

以上是关于markdown 使用bash和regex在一行中查找并终止进程的主要内容,如果未能解决你的问题,请参考以下文章

使用bash在changelog文件中读取文件直到regex

BASH:如何在 sed 命令中对字符串使用 Regex Negative Lookahead?

使用 Bash (sed?) 删除包含特定文本 (regex) 的多行 /* ... */ 样式注释

Bash:如何使用Regex搜索文件中的字符串并获取相关值

如何剪切部分文本并用Python和RegEx替换每一行

markdown [Regex Cheatsheet] #regex