mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
fd4c40a00d
(This used to be commit 3000a99b2d
)
13 lines
125 B
Bash
Executable File
13 lines
125 B
Bash
Executable File
#!/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
|