1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-07 04:01:59 +03:00
mariadb/ndb/tools/make-links.sh
unknown 6386c55cee Initial revision of NDB Cluster files
BitKeeper/etc/logging_ok:
  Logging to logging@openlogging.org accepted
2004-04-14 10:53:21 +02:00

21 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