Files
Arquivotheca.SunOS-4.1.4/files/MAKEHOSTS
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

18 lines
307 B
Bash

#! /bin/sh
#
# @(#)MAKEHOSTS 1.1 94/10/31 SMI
#
cd ${DESTDIR}/usr/hosts
rm -f [a-z]*
if (ypcat hosts > /dev/null 2>&1 ) then
for i in `ypcat hosts | awk '!/^#/ {print $2}' `
do
ln -s /usr/ucb/rsh $i
done
else
for i in `awk '!/^#/ {print $2}' ${DESTDIR}/etc/hosts`
do
ln -s /usr/ucb/rsh $i
done
fi