Also in XP: if you know what the file is called but you don't know where it is, click on the Search tab in an explorer window, drop down the More advanced options thing, and tick Search hidden files and folders.
That should work, except unless i'm going mad, you're actually recursivly listing all files/directories which end in '.mp3'. You want something like:
find / -name .mp3 -type f
OR
cd /; ls -ar * | grep .mp3
Maybe it is -R for recursive, but i'm on a windows box at college, so i can't check the man pages...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.