Which command searches the current directory and its descendants for a file exactly named clue.txt?
clue.txt
find . -name 'clue.txt'
find . -content 'clue.txt'
find / -name 'clue.txt'
ls clue.txt