🎴 Flashcard Mode

Science, Astronomy, and Unix Technology Quiz

Card1 / 19
Mastered0
Review0
QuestionClick to flip

Which of the following command can be used to list the file with the last modified file to be listed at the bottom?

AnswerClick to flip back
A
ls -ltr
💡 Explanation:

The 'ls -ltr' command lists files in long format (-l), reverse (-r) and by modification time (-t). This combination shows the most recently modified files at the bottom, which is the standard Unix/Linux approach for viewing files with oldest first. The 'r' flag reverses the default order.

Change Mode