How do I find a track by name?

I’m looking for a track I had created in one of my projects, but I don’t want to scan each track’s name looking for the track. Will someone please help? Thanks!

From the command line:

grep -l "name of track" *.aup

will search all .AUP files in the current directory.
(note the switch is lower case L)