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

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

1. True/False: When you divide two integers, if the result is not an integer (25 ÷ 3, for example), all computer programs will automatically truncate the fractional part of the result. 2. True/False: A Boolean variable can be used to turn off your computer during the running of a program. 3. True/False: When a variable is declared, its type should be specified.

Computer Science & Information Technology

You can avoid data entry errors by changing the:

A) field properties. B) record attributes. C) record properties. D) field attributes.

Computer Science & Information Technology

A ________ is a word or string of characters in Excel that represents a cell, a range of cells, a formula, or a constant value

A) cell range B) table array C) defined name D) validation list

Computer Science & Information Technology

The ____ attribute of the element determines whether a radio button or a check box is selected.

A. input B. value C. checked D. selected

Computer Science & Information Technology