diff options
| author | Garrett Wollman <wollman@FreeBSD.org> | 2002-07-16 22:16:05 +0000 |
|---|---|---|
| committer | Garrett Wollman <wollman@FreeBSD.org> | 2002-07-16 22:16:05 +0000 |
| commit | 5cd19a3cfd1ca09f228df51c1e50d31a9a11c65d (patch) | |
| tree | 9cc07624d64893a546207657e471464e0a26908c /usr.bin/alias | |
| parent | 43bf47e4d85eb7646b38158c5aee228cb9e04fac (diff) | |
Notes
Diffstat (limited to 'usr.bin/alias')
| -rw-r--r-- | usr.bin/alias/Makefile | 19 | ||||
| -rw-r--r-- | usr.bin/alias/generic.sh | 4 |
2 files changed, 23 insertions, 0 deletions
diff --git a/usr.bin/alias/Makefile b/usr.bin/alias/Makefile new file mode 100644 index 000000000000..c4f8748e25cb --- /dev/null +++ b/usr.bin/alias/Makefile @@ -0,0 +1,19 @@ +# $FreeBSD$ + +SCRIPTS=generic.sh +SCRIPTSNAME=cd +NOMAN= + +LINKS= ${BINDIR}/alias ${BINDIR}/bg \ + ${BINDIR}/alias ${BINDIR}/cd \ + ${BINDIR}/alias ${BINDIR}/command \ + ${BINDIR}/alias ${BINDIR}/fc \ + ${BINDIR}/alias ${BINDIR}/fg \ + ${BINDIR}/alias ${BINDIR}/getopts \ + ${BINDIR}/alias ${BINDIR}/jobs \ + ${BINDIR}/alias ${BINDIR}/read \ + ${BINDIR}/alias ${BINDIR}/umask \ + ${BINDIR}/alias ${BINDIR}/unalias \ + ${BINDIR}/alias ${BINDIR}/wait + +.include <bsd.prog.mk> diff --git a/usr.bin/alias/generic.sh b/usr.bin/alias/generic.sh new file mode 100644 index 000000000000..33a39ad97831 --- /dev/null +++ b/usr.bin/alias/generic.sh @@ -0,0 +1,4 @@ +#!/bin/sh +# $FreeBSD$ +# This file is in the public domain. +${0##*/} ${1+"$@"} |
