You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
203 B

#! /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