Which command will display all files that have the .lst extension?
Explanation
Option A, 'ls -l *.lst', correctly lists all files ending with the .lst extension in long format. Option B lists files starting with 'lst', option C lists files containing a dot, and option D matches files with any single character from 'l', 's', or 't' at the end, which is incorrect.