Initial import
[samba] / source / script / linkmodules.sh
diff --git a/source/script/linkmodules.sh b/source/script/linkmodules.sh
new file mode 100755 (executable)
index 0000000..16a04cc
--- /dev/null
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+cd "$1"
+test -f "$2" || exit 0
+
+for I in $3 $4 $5 $6 $7 $8
+do 
+       echo "Linking $I to $2"
+       ln -s $2 $I
+done
+
+exit 0