I need to hide all "permission denied"-messages from:

find . > files_and_folders

I am experimenting when such message arises. I need to gather all folders and files, to which it does not arise. Is it possible to direct the permission levels to the files_and_folders-file? How can I hide the errors at the same time?

link|improve this question

5  
I disagree with this closure; the question is about shell programming and how to avoid error messages appearing, and as such is 100% on topic for StackOverflow. – Jonathan Leffler Apr 17 at 19:52
feedback

closed as off topic by casperOne Feb 16 at 16:33

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

6 Answers

up vote 26 down vote accepted

Use:

find . 2>/dev/null > files_and_folders

This hides not just the permission denied errors, of course, but all error messages.

If you really want to keep other possible errors, such as too many hops on a symlink, but not the permission denied ones, then you'd probably have to take a flying guess that you don't have many files called 'permission denied' and try:

find . 2>&1 | grep -v 'Permission denied' > files_and_folders
link|improve this answer
feedback

Redirect standard error. For instance, if you're using bash on a unix machine, you can redirect standard error to /dev/null like this:

find . 2>/dev/null >files_and_folders
link|improve this answer
feedback

Those errors are printed out to the standard error output (fd 2). To filter them out, simply redirect all errors to /dev/null:

find . 2>/dev/null > some_file

or first join stderr and stdout and then grep out those specific errors:

find . 2>&1 | grep -v 'Permission denied' > some_file
link|improve this answer
feedback

This didn't work for me... I had to use:

find / -name expect 2>/dev/null

specifying the name of what I wanted to find and then telling it to redirect all errors to /dev/null

expect being the location of the expect program I was searching for.

link|improve this answer
Very good answer to my question. I love to see your way of using expect -command. Have had the same problem as you in different environments probably in OpenBSD or Arch-linux, cannot remember where. – Masi Feb 4 at 20:22
feedback

Pipe stderr to /dev/null by using 2>/dev/null

find . -name '...' 2>/dev/null

link|improve this answer
feedback

If you want to start search from root "/" , you will probably see output somethings like;

find: `/./proc/1731/fdinfo': Permission denied

find: `/./proc/2032/task/2032/fd': Permission denied

...

It's because of permission

to solve this;

1)You can use sudo command ;

sudo find /. -name 'toBeSearched.file'

it asks super user's password, when enter the password you will see result what you really want.

2)You can use redirect the Standard Error Ouput from (Generally Display/Screen) to some file and avoid seeing the error messages on the screen! redirect to a special file /dev/null ;

find /. -name 'toBeSearched.file' 2>/dev/null

3)You can use redirect the Standard Error Ouput from (Generally Display/Screen) to Standard output (Generally Display/Screen), then pipe with grep command with -v "invert" parameter to not to see the output lines which has 'Permission denied' word pairs;

find /. -name 'toBeSearched.file' 2>1 | grep -v 'Permission denied'

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.