M mrlayance Senior member Jul 11, 2002 366 0 0 Jan 25, 2005 #1 I used the following command find /Mp3 -type f -name "*.mp3" > /opt/SHOUTcast/playlists/playlist.lst The output is not in order? Any idea how to make the output arange alphabetically?
I used the following command find /Mp3 -type f -name "*.mp3" > /opt/SHOUTcast/playlists/playlist.lst The output is not in order? Any idea how to make the output arange alphabetically?
N n0cmonkey Elite Member Jun 10, 2001 42,936 1 0 Jan 25, 2005 #2 cat /opt/SHOUTcast/playlists/playlist.lst | sort -d > /tmp/playlist.lst
L lansalot Senior member Jan 25, 2005 298 0 0 Jan 25, 2005 #3 meh. find /Mp3 -type f -name "*.mp3" |sort > /opt/SHOUTcast/playlists/playlist.lst
M mrlayance Senior member Jul 11, 2002 366 0 0 Jan 25, 2005 #4 Originally posted by: lansalot meh. find /Mp3 -type f -name "*.mp3" |sort > /opt/SHOUTcast/playlists/playlist.lst Click to expand... Thanks
Originally posted by: lansalot meh. find /Mp3 -type f -name "*.mp3" |sort > /opt/SHOUTcast/playlists/playlist.lst Click to expand... Thanks