标签:uid span cron mysqld awk 用户 排除 grep -v com
linux是一个 多进程 多用户的操作系统
kill(删除执行中的进程)
小注:模拟运行着进程,可以使用tailf demo.txt ;ps -ef |grep ‘tailf’
面试:现在在linux上运行着多个flask ,不确定有多少个进程,请以简短的命令,将这些进程杀死?
ps -ef | grep ‘flask‘ | grep -v ‘grep‘ | awk ‘{print "kill -9" $2}‘ | sh
排除grep 批量找pid 命令执行
&(后台运行进程)
crontab(定时任务)
软件安装命令
rpm(管理安装套件)
yum(Shell前端软件包管理器)
标签:uid span cron mysqld awk 用户 排除 grep -v com
原文地址:https://www.cnblogs.com/wuzm/p/10992045.html