Is there a Subversion command to show the current revision number?
After svn checkout I want to start a script and need the revision number in a variable.
svn checkout
REV=svn info svn://svn.code.sf.net/p/retroshare/code/trunk | grep 'Revision:' | cut -d\ -f2
svn info svn://svn.code.sf.net/p/retroshare/code/trunk | grep 'Revision:' | cut -d\ -f2