Linux CLI - Navigating the File System
Which of the following is the correct syntax to list files with detailed info and human-readable sizes?
-l option shows detailed info, and -h makes sizes human-readable. Together, ls -lh is correct.ls -la) shows detailed info including hidden files but misses human-readable sizes. C (ls -h -a) misses detailed info. D (ls -lR) lists recursively, not human-readable sizes.-l + -h = detailed + human sizes [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions