Vance Lankhaar - 2004-02-28

Logged In: YES
user_id=372958

um, maybe you don't know enough bash?

try grep '*' currentplaylist

What's happening is that bash will automatically translate *
to the name of all the files in the current directory. You
can tell bash to ignore the * and pass it to the program by
using single quotes instead of double. Or, you can escape
it: grep \* currentplaylist

And I don't really know what you're trying to do with " |
awk -F'*' " - it doesn't look like valid awk to me......

And why not "xmms-shell -e current-track" ?

Vance