mac电脑卸载LVSecurityAgent

博主mac版本如下:
在这里插入图片描述

1.创建一个脚本

touch script_of_justice.sh

2.进入脚本文件,并且添加一下内容

vim script_of_justice.sh

echo 'delete shit.app..need your root pwd';
sudo rm -rf /Applications/dvc-manageproxy-exe.app;
sudo rm -rf /Applications/LVSecurityAgent.app;
echo 'script is fighting...';
sudo chflags noschg /opt/LVUAAgentInstBaseRoot;
sudo chflags noschg /opt/LVUAAgentInstBaseRoot/face;
sudo chflags noschg /opt/LVUAAgentInstBaseRoot/web;
echo 'delete shit.datafile..';
sudo rm -rf /opt/LVUAAgentInstBaseRoot;
echo 'kill shit.process..';
sudo ps -ef|grep -E 'LVUAAgentInstBaseRoot|dvc-manageproxy-exe' |grep -v "grep"|awk '{print $2}'|xargs sudo kill -9;
echo 'congratulations! You throw that shit!';

3.保存并且退出

:wq

4.给权限

chmod 755 script_of_justice.sh

5.执行脚本

./script_of_justice.sh

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-03-16 07:42:03       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-03-16 07:42:03       101 阅读
  3. 在Django里面运行非项目文件

    2024-03-16 07:42:03       82 阅读
  4. Python语言-面向对象

    2024-03-16 07:42:03       91 阅读

热门阅读

  1. 代码规范工具

    2024-03-16 07:42:03       39 阅读
  2. MFC中CString的用法及使用示例

    2024-03-16 07:42:03       39 阅读
  3. gPTP 协议和 PTP 与 TSN 的关系

    2024-03-16 07:42:03       36 阅读
  4. @Service

    2024-03-16 07:42:03       39 阅读
  5. 5.69 BCC工具之runqlen.py解读

    2024-03-16 07:42:03       46 阅读
  6. Redis 的 RDB 和 AOF

    2024-03-16 07:42:03       39 阅读
  7. HTML5、CSS3面试题(四)

    2024-03-16 07:42:03       35 阅读