Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In this programming project, you are asked to implement a simplified version of the find' utility on Linux system. This assignment assists you for better

image text in transcribed

image text in transcribed

image text in transcribed

image text in transcribed

image text in transcribed

image text in transcribed

image text in transcribed

In this programming project, you are asked to implement a simplified version of the find' utility on Linux system. This assignment assists you for better understanding of file systems design, how to use the Linux's system calls, and enhancing programming skills and experience with programming on a Unix-like environment. Description The find utility is used to locate files on a Unix or Linux system. find will search any set of directories you specify for files that match the supplied search criteria. You can search for files by name, owner, group, type, permissions, date, and other criteria. The search is recursive in that it will search all subdirectories too. The syntax looks like this: Sfind where-to-look criteria what-to-do Requirements You need to implement the following program with the output of the standard find utility provided on Linux. You can compare the output of your 1. 2. find where-to-look find where-to-look criteria a. b. c. find where-to-look -name find where-to-look -mmin find where-to-look -inum 3. find where-to-look criteria -delete Extra credit: 4. find where-to-look criteria -exec command Details of Each Functionality 1. find where-to-look This will display the pathnames of all files in the specified directory and all subdirectories. e.g. (if no directory specified, the default is the current working directory) In this programming project, you are asked to implement a simplified version of the find' utility on Linux system. This assignment assists you for better understanding of file systems design, how to use the Linux's system calls, and enhancing programming skills and experience with programming on a Unix-like environment. Description The find utility is used to locate files on a Unix or Linux system. find will search any set of directories you specify for files that match the supplied search criteria. You can search for files by name, owner, group, type, permissions, date, and other criteria. The search is recursive in that it will search all subdirectories too. The syntax looks like this: Sfind where-to-look criteria what-to-do Requirements You need to implement the following program with the output of the standard find utility provided on Linux. You can compare the output of your 1. 2. find where-to-look find where-to-look criteria a. b. c. find where-to-look -name find where-to-look -mmin find where-to-look -inum 3. find where-to-look criteria -delete Extra credit: 4. find where-to-look criteria -exec command Details of Each Functionality 1. find where-to-look This will display the pathnames of all files in the specified directory and all subdirectories. e.g. (if no directory specified, the default is the current working directory)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Marketing The New Profit Frontier

Authors: Ed Burnett

1st Edition

0964535629, 978-0964535626

More Books

Students also viewed these Databases questions

Question

What were the issues and solutions proposed by each team?

Answered: 1 week ago