-
-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lots of errors on runtime on macOS by default #134
Comments
Can you describe what behavior you want to change? I don't have a MacBook so I may not understand your situation, but can you run If you want to scan all files and directories under |
Apple is very restrictive with the filesystem, so running Is there an option yet to exclude a directory? |
No. At least not yet. This is because I want to follow 2 of the principles of the UNIX Philosophy (minimalism and composability). There should be a program capable of listing all current files/directories except certain pattern, for example: pdu $(find . -maxdepth 1 -mindepth 1 -name '*' -a -not -name Library) pdu $(fd -d 1 -E Library) Related issue: #86 |
The Unix edition of |
The macOS file system is very picky about reading going through a user's home directory, so after approving the terminal app to access Reminders, Photos etc,
pdu
spits out these errors:On the contrast,
dust
spits out this error:And both GNU
du
and BSDdu
on macOS spits out these errors:The text was updated successfully, but these errors were encountered: