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

When you change a(n) _________, the parts of the style definitions that are changed are the size of the text, the font style, the spacing before and after paragraphs, the alignment of paragraphs, and whether paragraphs have borders.? A. style set B. paragraph definition C. style customization D. paragraph set

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

________________ operators-such as +, -, *, and / -are used to indicate addition, subtraction, multiplication, and division, respectively.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology