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...

Which of the following can you not do if you use a query as the record source for a form?

A) Combine records from multiple tables B) Filter the records C) Lock your form so that it cannot be edited D) Limit the number of fields in the table which are displayed

Computer Science & Information Technology

If the user selects the first item in a ComboBox, the SelectedIndex property will have the value ____.

A. ?1 B. 0 C. 1 D. 2

Computer Science & Information Technology