You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
800 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# killall
## 说明
**killall命令** 使用进程的名称来杀死进程使用此指令可以杀死一组同名进程。我们可以使用kill命令杀死指定进程PID的进程如果要找到我们需要杀死的进程我们还需要在之前使用ps等命令再配合grep来查找进程而killall把这两个过程合二为一是一个很好用的命令
```bash
-e对长名称进行精确匹配
-l忽略大小写的不同
-p杀死进程所属的进程组
-i交互式杀死进程杀死进程前需要进行确认
-l打印所有已知信号列表
-q如果没有进程被杀死。则不输出任何信息
-r使用正规表达式匹配要杀死的进程名称
-s用指定的进程号代替默认信号“SIGTERM”
-u杀死指定用户的进程
```