ls –lqr
-
Lists the file or directory contents that the link references
-
Lists the name in each slot for each directory specified in the Directory parameter.
-
Displays nonprintable characters in file names as a ? (question mark) and Reverses the order of the sort.
-
Lists all subdirectories recursively.
Reveal answer
Fill a bubble to check yourself
C
Correct answer
Explanation
ls -lqr combines flags: -l (long format), -q (show non-printable characters as ?), and -r (reverse order). When combined, it displays detailed listings with non-printable characters replaced by ? and reverses the sort order (typically smallest files first when sorted by size).