Use the find command to display the names of all the header files in the /usr/include directory that are larger than 1000 bytes. Write down the command that you used to perform this task.

The following session shows a sample run of the command for performing the given task. Note that the command output includes directories.


```
$ find /usr/include -size +1000c -print | more
/usr/include
/usr/include/pwdb
/usr/include/pwdb/_pwdb_macros.h
/usr/include/pwdb/pwdb_map.h
/usr/include/pwdb/pwdb_public.h
/usr/include/pwdb/pwdb_radius.h
/usr/include/pwdb/pwdb_shadow.h
/usr/include/pwdb/pwdb_unix.h
/usr/include/pwdb/radius.h
/usr/include/asm

$
```
The following session shows the command that displays the total number of files in the /usr/include directory that are larger than 1000 bytes.
```
$ find /usr/include -size +1000c -print | wc -l
2849
$
```

Computer Science & Information Technology

You might also like to view...

The Nyberg approach that is more or less a manual approach with only simple mathematics to support it is __________ . ?

A) ?human-made B) ?random C) ?math-made D) ?random with testing

Computer Science & Information Technology

Padding can be set on which sides of an element?

A. top and bottom only B. left and right only C. both a and b D. none of the above

Computer Science & Information Technology

The WriteLine procedure will ____.

A. write a record to a file B. place a line return in the file C. update an existing record in a file D. close a StreamWriter

Computer Science & Information Technology

Using good grammar, describe at least one solution for when a motherboard that has integrated sound ports has a sound card installed, but the drivers for the sound card will not load

What will be an ideal response?

Computer Science & Information Technology