summaryrefslogtreecommitdiffstats
path: root/usr.sbin/xntpd/scripts/mklinks
blob: 8565d1ca35804c4592f6924571602e1d69a7951e (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# call from the source root as 'mklinks ../sun4 ../src'
find . -type d -print | sort | sed "s-^\.-mkdir $1-" | sh
root=`echo $2 | sed "s-^\.\./--"`
find . ! -type d -a ! -name Config -print | sed "s-^\./--" | while read file
	do
		down=`echo $file | sed -e "s-[^/]*-..-g"`
		ln -s $down/$root/$file $1/$file
	done
OpenPOWER on IntegriCloud