And to remove unwanted m3u playlists this might help ;-)

Code:
--------------------
    
  #!/bin/bash
  #
  LIBRARY=/library/music
  #
  number=`find $LIBRARY -name "*.m3u" -print | wc -l`
  find $LIBRARY -name "*.m3u" -exec rm -f {} \;
  echo "$number playlistfiles have been removed!"
  
--------------------


Ronald.


-- 
tingtong5
------------------------------------------------------------------------
tingtong5's Profile: http://forums.slimdevices.com/member.php?userid=9671
View this thread: http://forums.slimdevices.com/showthread.php?t=69324

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to