Created
December 1, 2018 08:00
-
-
Save yi-yun/cae86773640846a2dbdeab82d0a17872 to your computer and use it in GitHub Desktop.
去掉监控
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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