After running the following command...
# locate -i "little"
I receive these results.
/mnt/external/Songs/The White Stripes/[1999] The White Stripes/14 little people.mp3
/mnt/external/Songs/The White Stripes/[2000] De Stijl/03 Little Bird.mp3
/mnt/external/Songs/The White Stripes/[2001] White Blood Cells/06 - little room.mp3
/mnt/external/Songs/The White Stripes/[2003] Elephant/the white stripes - elephant - 10 - little acorns.mp3
/mnt/external/Songs/The White Stripes/[2005] Get Behind Me Satan/11 Little Ghost.mp3
/mnt/external/Songs/The White Stripes/[2007] Icky Thump/Little Cream Soda.mp3
How do I pipe one of the results of the locate command to another command. Essentially I'll be prepending "totem" (media player) to the location of file and then I'll execute the command to play one of the songs.
EDIT: I just realized I can't copy and paste with the mouse because a lot of the albums; I have the years encased in parathensis (ex. Elephant (2003)) which have to be manually escaped...
2nd EDIT: Roland, I am running locate to find the path of the song so I can play the song using totem media player.
# totem /mnt/external/Songs/The White Stripes/[2007] Icky Thump/Little Cream Soda.mp3
Essentially I would like to know how to copy the path of a song location returned by the locate command, and then paste that location into the terminal so I can give totem a location of the song.

locate! – B. Roland Sep 14 '11 at 10:38totemcommand. (Use double quotes if required.) – B. Roland Sep 14 '11 at 10:53