shell命令屏蔽错误消息
2024-02-13 tech shell 1 mins 401 字
我在 Mac 下用命令行搜索文件:
sudo find / -name "com.google.Keystone.plist"
输出了很多没有权限的内容:
find: /Library/Application Support/com.apple.TCC: Operation not permitted
find: /Library/Caches/com.apple.amsengagementd.classicdatavault: Operation not permitted
find: /Library/Caches/com.apple.aneuserd: Operation not permitted
这时候可以使用重定向 2>/dev/null
,将这些错误信息屏蔽掉:
sudo find / -name "com.google.Keystone.plist" 2>/dev/null