"Export from SVN and ZIP with date/time in filename"

Mon 11 May 2009

#!/bin/bash

#Export folder from SVN

#ZIP it and add date and time to file name 

svn export https://svn.server.com/svn/ --force --username myusername --password mypassword NameOutFolder

filename= NameOutFolder$(date "+_%m_%d_%y_%k_%M")

zip -r -q $filename.zip NameOutFolder