Multiple choice technology operating systems Which of the following will list the directories from the current working path. ls -l | grep ^d ls | grep dir ls | grep ^d pwd Reveal answer Fill a bubble to check yourself A Correct answer Explanation ls -l lists files in long format where first character indicates type: 'd' for directory, '-' for regular file. grep ^d filters lines starting with 'd'. Option C misses -l, and grep dir would search for 'dir' in filenames.