Find a file named boo in the current directory without printing permission
denied message once the file is not accessible
find . ! -readable -prune -name boo -printAlternatively,
find . -name boo 2>&1 -print | grep -v 'permission denied'Find a file named boo in the current directory without printing permission
denied message once the file is not accessible
find . ! -readable -prune -name boo -printAlternatively,
find . -name boo 2>&1 -print | grep -v 'permission denied'