mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-22 08:53:41 +01:00
15 lines
120 B
Plaintext
15 lines
120 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
if [ -n "$2" ]; then
|
||
|
ypmatch $2 $1
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
if [ -n "$1" ]; then
|
||
|
ypcat -k $1
|
||
|
exit 0
|
||
|
fi
|