I'm searching my system for a folder called Group Containers
, and use the command find / type -d -name "Group Containers"
. The output did include the desired folder, along with over 100 Permission denied
results like this:
find: /usr/sbin/authserver: Permission denied
find: /.Spotlight-V100: Operation not permitted
find: /Library/Application Support/Apple/ParentalControls/Users: Permission denied
find: /Library/Application Support/Apple/AssetCache/Data: Permission denied
find: /Library/Application Support/ApplePushService: Permission denied
find: /Library/Application Support/com.apple.TCC: Operation not permitted
I was able to filter out these results by changing the command to find / type -d -name "Group Containers" 2>/dev/null
, but I'm curious why these Permission denied
results come up in the first place, seeing as none of them seems to contain the Group Containers
search term.
Does anyone know why these results are returned?