Write your own version of find named myfind that writes output to the file findout but without the clutter of error messages, such as those generated when you do not have permission to search a directory. The myfind com- mand should accept the same options and arguments as find. Can you think of a situation in which myfind does not work as desired?

What will be an ideal response?


$ cat myfind
(find $* > findout) >& /dev/null
This script will not work with the –ok option, which queries the user by
sending messages to standard error.

Computer Science & Information Technology

You might also like to view...

Class Array’s ________ method is used to create a Stream from an array of objects.

a. stream b. arrayToStream c. createStream d. objectToStream

Computer Science & Information Technology

When creating a building block, you can specify all of the following EXCEPT its:

A) name. B) category. C) file type. D) description.

Computer Science & Information Technology

Reviewers comments are uniquely identified by ________

A) distinct color B) unique font C) unique color underline D) unique color balloon

Computer Science & Information Technology

A data model class is responsible for initializing and managing the data used by the program.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology