mirror of
https://github.com/opnsense/src.git
synced 2026-04-01 23:45:12 -04:00
10 lines
324 B
Text
10 lines
324 B
Text
|
|
#!/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
|