I needed to manipulate rsync URIs and since they are pretty simple rsync://[USER@]HOST[:PORT]/SRC (from man rsync) I created URI/rsync.pm based on URI::http. It would be useful if this made it into the URI module, although it isn't a standardised URI. Thanks Dave UK Mirror Service - http://www.mirror.ac.uk/ ---------------------------------------------------------------------- URI/rsync.pm ---------------------------------------------------------------------- package URI::rsync; require URI::http; @ISA=qw(URI::http); sub default_port { 873 } 1;
