作用
grep(global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。
grep(global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。
kill 命令是用来向进程发送一个用户指定的信号,对进程进行相应的操作。
kill 命令的执行原理是向操作系统内核发送一个信号(多是终止信号)和目标进程的 PID,系统内核根据收到的信号类型,对指定进程进行相应的操作。
进程PID可用ps、pidof、pstree、top等工具获取,然后使用kill命令来结束该进程。
killall - kill processes by name
killall sends a signal to all processes running any of the specified commands. If no signal name is specified, SIGTERM is sent. Signals can be specified either by name (e.g. -HUP or -SIGHUP) or by number (e.g. -1) or by option -s.
If the command name is not regular expression (option -r) and contains a slash (/), processes executing that particular file will be selected for killing, independent of their name.
killall returns a zero return code if at least one process has been killed for each listed command, or no commands were listed and at least one process matched the -u and -Z search criteria. killall returns non-zero otherwise.
A killall process never kills itself (but may kill other killall processes)
ps 命令是Process Status的缩写,用于进程的监测和控制。
ps 命令是最基本进程查看命令,使用该命令可以确定有哪些进程正在运行和运行的状态、进程是否结束、进程有没有僵尸、哪些进程占用了过多的资源等。
ps 命令显示的是瞬间进程的状态,并不是动态连续的;如果想对进程进行实时监控可用top命令。
将下一个新版本的特性导入到当前版本并进行测试(新版的改动不兼容老版本,就是这么任性)。
py2.7-源代码: Lib/__future__.py
py3.7-源代码:Lib/__future__.py