Using the find utility, perform the following tasks:

a. List all files in the working directory and all subdirectories that have been
modified within the last day.
b. List all files you have read access to on the system that are larger than 1
megabyte.
c. Remove all files named core from the directory structure rooted at your
home directory.
d. List the inode numbers of all files in the working directory whose filenames
end in .c.
e. List all files you have read access to on the root filesystem that have been
modified in the last 30 days.


a. $ find . -mtime -1
b. $ find / -size +1024k
c. $ find ~ -name core -exec rm {} \;
d. $ find . -name "*.c" -ls
e. $ find / -xdev -mtime -30

Computer Science & Information Technology

You might also like to view...

Algorithm __________ randomly orders a List's elements.

a. randomShuffle. b. randomPlacement. c. fiftyTwoCardPickup. d. shuffle.

Computer Science & Information Technology

When headings have been added or changed in a report after the table of contents has been create, click __________ to ensure the latest changes have been included in the table of contents.

A. Change Table B. Modify Table C. Update Table D. Revise Table

Computer Science & Information Technology

RTF stands for ________ Text Format.

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

Computer Science & Information Technology

To export an Edge Animate project in OAM format, you click select ___________________________ as the Publish Target in the Publish Settings window.

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

Computer Science & Information Technology