Linux 常用批量操作 发表评论 1,952 人阅读 0、批量杀进程 ps -ef | grep pchedule | awk '{print $2}' | xargs kill -9 1、批量删除.git文件 find / -name '.git' | xargs rm -rf