ObexMGet 1.0
Copyright(c)2006, R. Rawson-Tetley
THIS SOFTWARE COMES WITH ABSOLUTELY NO WARRANTY!

I just wanted to be able to download groups of files from my mobile
phone without having to install all the kdebluetooth stuff (the only 
group copy I found that works) - I don't run KDE and don't want the libs 
on my system - no offence to people that do like it, it's just not for me.

This tool allows you to specify an obex bluetooth device, a directory,
and optionally, a channel (my Nokia uses channel 12 for example and obexftp
doesn't autodetect it) and a regular expression pattern to select files
to copy.

Obviously, this requires obexftp and grep to run, it's written in python
and other than those dependencies is platform neutral.

Usage: obexmget [-Bchannel] [-Ppattern] -b<bdaddr> -d<directory>

    -Bchannel The OBEX channel on the target device (ignore to detect)
    -Ppattern The file pattern match to use when retrieving files (* = All, 
              OR grep style regular expression)
    -bbdaddr  The BD addr of the target device
    -ddir     The directory to download files from

  Examples:
     obexmget -B12 "-P.*.jpg" -b 99:99:99:99:99 -dE:/Images

Notes:

obexmget uses grep to parse regular expressions, so you have to use
regular expression syntax when matching filenames on the target 
device - filestyle globbing syntax WILL NOT WORK.

Eg:

	All jpgs		"-P.*.jpg"
	All movies		"-P.*.3gp"
	From 2006		"-P.*2006"
	Pictures from 2006	"-P.*2006.*.jpg"


