Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 276 Bytes

62.md

File metadata and controls

13 lines (10 loc) · 276 Bytes

题目要求

把当前用户下所有进程名字中含有"aming"的进程关闭。

参考答案

#!/bin/bash
#这个脚本用来杀进程
#作者:猿课-阿铭 www.apelearn.com
#日期:2018-12-07

ps -u $USER|awk '$NF ~ /aming/ {print $1}' |xargs kill