2011/5/30 Rony <[email protected]>: > The files are scattered and have extensions that tell their type, like > mp3, avi etc. What I want is a media browser that can dig through my > directories and sub directories and show files in folders like music, > video etc. Basically it will be an advanced search and sort utility.
mkdir /music find $HOME -name '*.mp3' -print0 | xargs -0 mv -t /music and similarly for video etc. Binand -- http://mm.glug-bom.org/mailman/listinfo/linuxers

