Files
System/MacBook/Mac删除权限被锁定的应用.md
offends d12a206210
Some checks failed
continuous-integration/drone Build is failing
synchronization
2025-08-25 16:02:49 +08:00

17 lines
315 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

> 本文作者:丁辉
# Mac删除权限被锁定的应用
打开终端,输入命令后将应用拖拽到终端
```bash
sudo rm -rf [应用路径]
```
> 如果报错Operation not permitted 则执行下一步命令,后再次执行删除命令
```bash
sudo /usr/bin/chflags -R noschg [应用路径]
```