omit <type> links

This commit is contained in:
Brent Cook
2015-11-22 06:37:13 -06:00
parent fbe05ec826
commit 9c5105eeb1
2 changed files with 1 additions and 9 deletions

View File

@@ -11,7 +11,7 @@ for i in `ls -1 *.3`; do
for j in $links; do
a=`echo "x$j" | tr '[:upper:]' '[:lower:]'`
b=`echo "x$name" | tr '[:upper:]' '[:lower:]'`
if [ $a != $b ]; then
if [[ $a != $b && $a != *"<type>"* ]]; then
echo $name.3,$j.3 >> links
fi
done