mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
6386c55cee
BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
20 lines
203 B
Bash
Executable file
20 lines
203 B
Bash
Executable file
#! /bin/sh
|
|
|
|
# 1 - Link top src
|
|
# 2 - Link dst
|
|
|
|
if [ $# -lt 2 ]
|
|
then
|
|
exit 0
|
|
fi
|
|
|
|
name=`basename $2`
|
|
files=`find $1/$name -type f -name '*.h*'`
|
|
|
|
for i in $files
|
|
do
|
|
ln -s $i $2/`basename $i`
|
|
done
|
|
|
|
|
|
|