Skip to content

Instantly share code, notes, and snippets.

@yi-yun
Created December 1, 2018 08:00
Show Gist options
  • Select an option

  • Save yi-yun/cae86773640846a2dbdeab82d0a17872 to your computer and use it in GitHub Desktop.

Select an option

Save yi-yun/cae86773640846a2dbdeab82d0a17872 to your computer and use it in GitHub Desktop.
去掉监控
#!/bin/bash
rm -rf /usr/local/aegis
for A in $(ps aux | grep Ali | grep -v grep | awk '{print $2}')
do
kill -9 $A;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment