Linux Find Command Quiz

Linux Find Command Quiz

12th Grade

15 Qs

quiz-placeholder

Similar activities

Cybersecurity 2.2.1 - 2.2.3

Cybersecurity 2.2.1 - 2.2.3

10th - 12th Grade

19 Qs

LCL review

LCL review

9th - 12th Grade

16 Qs

FILE MANAGEMENT

FILE MANAGEMENT

KG - University

15 Qs

Linux Quiz

Linux Quiz

9th - 12th Grade

13 Qs

Linux M1

Linux M1

9th - 12th Grade

10 Qs

RedHat Academy 8.3

RedHat Academy 8.3

10th Grade - University

15 Qs

Linux 1 -- Commands -- Chapter 1 & 2

Linux 1 -- Commands -- Chapter 1 & 2

12th Grade

14 Qs

Create Basic Expressions and grep Quizizz

Create Basic Expressions and grep Quizizz

9th - 12th Grade

20 Qs

Linux Find Command Quiz

Linux Find Command Quiz

Assessment

Quiz

Computers

12th Grade

Medium

Created by

Pushpendra Pateriya

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following command accomplish?

find /tmp -type f -mmin -60

It lists directories in the /tmp directory

It finds files in the /tmp directory that have been modified in the last 30 minutes

It finds files in the /tmp directory that have been modified in the last 60 minutes.

It finds files in the /tmp directory that have been modified in the last 60 days.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the -mindepth option do in the following command? find /var -mindepth 2 -name "*.log"

Starts searching from the root directory.

Limits the search to files with a minimum size of 2MB.

Ensures the search includes files starting from a depth of 2 directories.

Limits the search to files with a minimum depth of 2 subdirectories.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you find all files modified exactly 7 days ago?

find . -mtime 7

find . -mtime -7

find . -mtime +7

find . -mtime =7

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you find all directories in the current directory that are writable by the user?

find . -type d -perm -u=w

find . -type d -perm /u=w

find . -type d -perm +u=w

find . -type d -perm =u=w

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which command would list all files and directories in the /home/user directory except those named *.tmp?

find /home/user -name "*.tmp"

find /home/user ! -name "*.tmp"

find /home/user -not -name "*.tmp"

Both B and C

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which command finds files in the /var/log directory that belong to the group admin?

find /var/log -group admin

find /var/log -user admin

find /var/log -group id admin

find /var/log -gid admin

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following commands will find all files in the /home directory that are owned by the user alice and have been modified in the last 2 days?

find /home -user alice -mtime -2

find /home -user alice -mtime 2

find /home -user alice -mtime +2

find /home -user alice -mtime 2d

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?