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.

What will be an ideal response?

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

$
```

Computer Science & Information Technology

You might also like to view...

In DFD terminology, a data store is a process that changes data by performing a calculation, updating information, or sorting a list.

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

Computer Science & Information Technology

You have lots of images on your hard drive totaling 500 million bytes.  A 2 Gigabyte storage device will be adequate to store those photos

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

Computer Science & Information Technology