blob: 2fcb9d1cb18304625276903f3290cf37839a6a3d [file] [log] [blame]
Neels Hofmeyr1a4c4602018-03-15 22:04:41 +01001#!dont_run_this
2# This file is sourced by */gen_links.sh
3
4gen_links() {
5 DIR=$1
6 shift
7 FILES=$*
8 for f in $FILES; do
9 echo "Linking $f"
10 ln -sf $DIR/$f $f
11 done
12}