Skip to content

Instantly share code, notes, and snippets.

@susieyy
Created April 30, 2009 10:04
Show Gist options
  • Save susieyy/104383 to your computer and use it in GitHub Desktop.
Save susieyy/104383 to your computer and use it in GitHub Desktop.
#!/bin/sh
file_name=`date +%Y%m%d_%H%M`_svn.dump.gz
home=/home/subversion
svn=$home/svn
svnadmin dump $svn | gzip > $home/$file_name
smbclient //HS-DTGL5C9/share -U administrator -N -c "put ${home}/${file_name} /Backup/${file_name}"
rm $home/$file_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment