This seems to do the trick when run in a terminal from the top level of the working copy:
svn info -R | grep Revision | sed "s/Revision: //g" | sort -n | tail -1
Updated Or, you could just use the svnversion command.
I prefer awk ‘{print $2}’ instead of replacing with sed- 2 cuts the second field, alter as needed.
Thanks for the tip. What I don’t know about sed and awk could fill the Grand Canyon - I was pleased to have figured out enough sed to do that replacement at all!
2 comments
I prefer awk ‘{print $2}’
I prefer awk ‘{print $2}’ instead of replacing with sed- 2 cuts the second field, alter as needed.
Thanks for the tip. What I
Thanks for the tip. What I don’t know about sed and awk could fill the Grand Canyon - I was pleased to have figured out enough sed to do that replacement at all!