I have the following working
tar -pcvf base.tar input/myPacket/my2 --exclude-vcs input/myPacket/my3/*.bmp
When i have directories with spaces like "input file" then i include the paths in quotes and the include path doesnot work for *.bmp
tar -pcvf base.tar "input file/myPacket/my2" --exclude-vcs "input file/myPacket/my3/*.bmp"
Thanks,