Use du to examine your disk usage. Write a script that prints out the full pathnames of your files that are over a specified size.

What will be an ideal response?


You can use du to generate the list and gawk to print lines where a file is greater than some
specified value.

Computer Science & Information Technology

You might also like to view...

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

1. A linked list is called "linked" because each node in the series has a pointer that points to the next node in the list. 2. If there are no nodes in a linked list, you cannot append a node to the list. 3. When working with a linked list one of the basic operations you can perform is to destroy the list. 4. A new node must always be made the last node in the list. 5. A new node cannot become the first node in the list.

Computer Science & Information Technology

What is the difference between the following statements as seen by the compiler?

``` 1) int y = 7; 2) int y = 7; ``` A. The compiler won’t accept 1) because of the separate lines. B. The compiler won’t accept 1) because of the white space characters. C. The compiler assigns “7” into “y” in both cases. D. Neither can be compiled.

Computer Science & Information Technology

A program that is freely available for use and modification is a(n) ________ application

Fill in the blank(s) with correct word

Computer Science & Information Technology

Functions that don't return a value are known as empty functions.

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

Computer Science & Information Technology