🎴 Flashcard Mode

Basic File Operations Unix Quiz

Card1 / 5
Mastered0
Review0
QuestionClick to flip

What command will give you a long listing of a directory AND include hidden files?

AnswerClick to flip back
A
ls -la
💡 Explanation:

In Unix-like shells, the ls command lists directory contents. The -l flag specifies the long listing format providing detailed permissions and metadata, while the -a flag reveals hidden files starting with a dot.

Change Mode