#!/usr/bin/env bash lsof $(pwd) | \ awk -F " " ' { print } ' | \ while read process ; do [[ ${process} == "PID" ]] && continue; # kill the processes here # if you assign each process to a variable or an array # you will not be able to access it after leaving this while loop # pipes are executed as subshells echo ${process}; done总结
以上是内存溢出为你收集整理的linux – 有没有办法杀死在某个目录中运行的所有进程?全部内容,希望文章能够帮你解决linux – 有没有办法杀死在某个目录中运行的所有进程?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)