Skip to main content

一些常用的macOS命令

选择架构执行命令

# arch -arm64
arch -arm64 brew install

移除 quarantine 标记

sudo xattr -rd com.apple.quarantine /Applications/Easydict.app

# You may need to self sign it as well:
codesign --force --deep --sign - example.app

删除当前目录下的 DS_Store 文件

find ./ -name ".DS_Store" -depth -exec rm {} \;