you need to find all files in the /home/gshant directory that are larger than 300k. you change your directory to /home/gshant. what would you enter at the command prompt to find these files?

See Answers (1)

Suggested Answer

You can search for a file or directory on your file system with the locate command. Matches, which can be files, directories, symbolic links, system devices, etc., can be found and immediately processed within the same command by using the -exec flag (find -exec).What does locate command mean?A UNIX command line tool for traversing a file hierarchy is the find command. It can be used to look for files and folders and then operate on them in the future. It allows for searching by name, creation date, modification date, owner, and permissions for files and folders.Using the criteria you specify, the find command searches and locates the list of files and directories for files that match the inputs. Use the find command to locate files according to a number of criteria, including permissions, users, groups, file kinds, dates, and sizes.You can search for a file or directory on your file system with the locate command. Matches, which can be files, directories, symbolic links, system devices, etc., can be found and immediately processed within the same command by using the -exec flag (find -exec).To learn more about UNIX command line tool refer to: https://brainly.com/question/9362230 #SPJ4