This morning you modified five large data files in your home folder in Linux, and now you want to find and delete the files because you no longer need them. Which of the following commands can you use to list and sort files based on the time they were modified

Respuesta :

Answer:

ls -t

Explanation:

"ls" command in Linux is used very often. It lists the directory contents. The "ls" utility is part of the core utilities and installed in all Linux distributions.

When ls command is used with "-t" , "ls -t" sorts files/directories list by date created or modified.

More advanced version is "ls -lt", where it sorts by date and shows info about directory, size, modified date and time, file or folder name and owner of file and its permission.