Question
25. This is to find all the files in the /apps directory but do not search in /apps/bin: A. find /apps -name prune /apps/bin -o
25. This is to find all the files in the /apps directory but do not search in /apps/bin:
A. find /apps -name prune "/apps/bin" -o -print
B. find /apps -name "/apps/bin" -prune -o -print
C. find /apps/bin -name "/apps" -o -print
D. find /apps -name skip "/apps/bin" o print
E. find /apps -filename skip "/apps/bin" o print
5
26. To find all files that have been modified in the last five
days:
A. find / -mtime +5 -print
B. find / -mtime -5 print
C. find / -mtime 5+ print
D. find / -mtime 5- print
E. find / -mtime 5* -print
27. To find files in /var/adm di
rectory that have not been mod
ified in the last five days:
A. find / -mtime +5 -print
B. find / -mtime -5 print
C. find / -mtime 5+ print
D. find / -mtime 5- print
E. find / -mtime ^5 -print
28. To find all directories in /etc
A. find /etc -ty
pe dir -print
B. find /etc -type d -print
C. find /etc -dir -print
D. find /etc type=d -print
E. find /etc -d -print
29. To find all files but not directories in /etc
A. find /etc -type !dir -print
B. find /etc !-type d -print
C. find /etc -!dir -print
D. find /etc t=!d -print
E. find /etc ^d -print
30. To match all filenames that
start with f, followed by any
two characters, followe
d by any string; the end
character must be an s:
A. ls f??[?*]s
B. ls f??*s
C. ls f**?s
D. ls f?**s
E. ls f**+s
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started