I added export too. I am not very familiar with bash script, so didnt add error conditions but it should be easy for you to add it in.
#!/bin/sh # # Distributed under the terms of GNU GPL version 2 # # http://marius.scurtescu.com/?p=102 # http://gnomefiles.org/app.php?soft_id=1059
LOGFILE=`mktemp -t svn_export.XXXXXX` zenity --entry --title="Export" --text="Please enter the svn path to export" > EXPORT_DIR svn export `cat EXPORT_DIR` > $LOGFILE zenity --text-info --title="Subversion: Export" --filename=$LOGFILE --width=600 --height=400 --window-icon="`dirname $0`/svn.xpm" rm -f $LOGFILE rm -f EXPORT_DIR
<code>
<blockcode>
<foo>
[foo]
More information about formatting options
my del.icio.us
I added export too. I am not very familiar with bash script, so didnt add error conditions but it should be easy for you to add it in.
#!/bin/sh
#
# Distributed under the terms of GNU GPL version 2
#
# http://marius.scurtescu.com/?p=102
# http://gnomefiles.org/app.php?soft_id=1059
LOGFILE=`mktemp -t svn_export.XXXXXX`
zenity --entry --title="Export" --text="Please enter the svn path to export" > EXPORT_DIR
svn export `cat EXPORT_DIR` > $LOGFILE
zenity --text-info --title="Subversion: Export" --filename=$LOGFILE --width=600 --height=400 --window-icon="`dirname $0`/svn.xpm"
rm -f $LOGFILE
rm -f EXPORT_DIR