Situatie
Find will show an error message for each directory/file on which you don’t have read permission
Solutie
To avoid those messages, append 2>/dev/null at the end of each command:
find /where/to/look/ criteria action 2>/dev/null sudo find / -type d -name "apt" 2>/dev/null |
Leave A Comment?