Which of these commands can we use to show files with a .mp3 extension in a directory?

find . -name ".mp3"grep . -name ".mp3"find -name "*.mp3"find . -name "*.mp3"

Excellent! We use the find command with . to search the current directory and -name followed by "*.mp3" to specify the extension.

Drat! We use the find command with . to search the current directory and -name followed by "*.mp3" to specify the extension.