Linux CLI - Navigating the File System
You want to list all files including hidden ones, with detailed info and human-readable sizes, recursively through all subdirectories. Which command should you use?
-a for hidden files, -l for detailed info, -h for human-readable sizes, and -R for recursive listing.-alhR. ls -alhR: ls -alhR includes all needed options.ls -lha) misses recursive -R. C (ls -aRl) includes all options but order does not matter in Linux, so it is also correct. D (ls -l -a -h) misses recursive -R.ls -alhR [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions