head     1.1;
branch   1.1.1;
access   ;
symbols  start:1.1.1.1 source:1.1.1;
locks    ; strict;
comment  @# @;


1.1
date     2002.08.14.03.06.17;  author pools2;  state Exp;
branches 1.1.1.1;
next     ;

1.1.1.1
date     2002.08.14.03.06.17;  author pools2;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@#!/bin/sh
##
## fp2rp -- convert a standard forward path to a reverse dotted path
##
if [ "x$1" = "x." ]; then
    rp="."
else
    rp=""
    for pe in `IFS="$IFS/"; echo $1`; do
        rp="../$rp"
    done
fi
echo $rp | sed -e 's:/$::'
@


1.1.1.1
log
@Apache Easy 0.0.1
@
text
@@
