svnyoungest 0.1
===============

A small tool to report the youngest revision of a path in a Subversion
repository. It is similar to ''svnlook youngest'', but works on the client
side. It is intended as a replacement for the following snippet:

  svn list -v $URL | tr -s [:blank:] "\t" | cut -f 2 | sort -g | tail -n 1

Usage is very straightforward:

  svnyoungest "$URL"
  
The output is the youngest revision number (plus newline). svnyoungest should
pick up existing authentication credentials, just like the regular ''svn''.
It will however never prompt for a password (i.e. non-interactive mode).

LICENSE

Written by Bruno De Fraine. Released under the public domain.

DISCLAIMER

This software is experimental. It is provided "as is", without warranty of
any kind. Use at your own risk.

