home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Online 1999 April
/
PCO0499.ISO
/
filesbbs
/
os2
/
apach134.arj
/
APACH134.ZIP
/
src
/
helpers
/
fp2rp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1998-03-20
|
235 b
|
14 lines
#!/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:/$::'