eis/inc/x2struct/thirdparty/lnblade

14 lines
164 B
Bash

#!/bin/bash
if [ "$1" == "clear" ]; then
find -type l -delete
exit
fi
fs=$(find . -name lib)
d=$(pwd)
for i in $fs; do
ln -s ${d}/$i ${i}64_debug
done