diff options
author | phk <phk@FreeBSD.org> | 2000-11-24 10:18:52 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2000-11-24 10:18:52 +0000 |
commit | aedcd50082f71cd5cc88eebd3fb44c4ce6bd4a23 (patch) | |
tree | 8740cb837c511ab4e712d3eafa35fde5de44ad53 /bin/pwd/Makefile | |
parent | 8086c436850659d90d076656d620daeccff4054d (diff) | |
download | FreeBSD-src-aedcd50082f71cd5cc88eebd3fb44c4ce6bd4a23.zip FreeBSD-src-aedcd50082f71cd5cc88eebd3fb44c4ce6bd4a23.tar.gz |
Let the pwd program double as realpath(1).
This lets you resolve pathnames to their underlying physical path:
critter# realpath /sys/kern/subr_disk.c
/freebsd/src/sys/kern/subr_disk.c
Update the pwd man-page slightly.
Diffstat (limited to 'bin/pwd/Makefile')
-rw-r--r-- | bin/pwd/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/pwd/Makefile b/bin/pwd/Makefile index 4a8e66a..be42836 100644 --- a/bin/pwd/Makefile +++ b/bin/pwd/Makefile @@ -2,5 +2,7 @@ # $FreeBSD$ PROG= pwd +LINKS= ${BINDIR}/pwd ${BINDIR}/realpath +MAN1= pwd.1 realpath.1 .include <bsd.prog.mk> |