aboutsummaryrefslogtreecommitdiff
path: root/man/update_links.sh
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2015-11-22 06:37:13 -0600
committerBrent Cook <busterb@gmail.com>2015-11-22 06:37:13 -0600
commit9c5105eeb18ad0be0d04769f6622fed023df58af (patch)
tree10c7fccc18054a7b84fca08af4ee0668b177a92e /man/update_links.sh
parentfbe05ec826f1af2d5778be1c6fe77a35952e7421 (diff)
downloadportable-9c5105eeb18ad0be0d04769f6622fed023df58af.tar.gz
portable-9c5105eeb18ad0be0d04769f6622fed023df58af.tar.bz2
portable-9c5105eeb18ad0be0d04769f6622fed023df58af.zip
omit <type> links
Diffstat (limited to 'man/update_links.sh')
-rwxr-xr-xman/update_links.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/man/update_links.sh b/man/update_links.sh
index b191cc6..3bccd0c 100755
--- a/man/update_links.sh
+++ b/man/update_links.sh
@@ -11,7 +11,7 @@ for i in `ls -1 *.3`; do
11 for j in $links; do 11 for j in $links; do
12 a=`echo "x$j" | tr '[:upper:]' '[:lower:]'` 12 a=`echo "x$j" | tr '[:upper:]' '[:lower:]'`
13 b=`echo "x$name" | tr '[:upper:]' '[:lower:]'` 13 b=`echo "x$name" | tr '[:upper:]' '[:lower:]'`
14 if [ $a != $b ]; then 14 if [[ $a != $b && $a != *"<type>"* ]]; then
15 echo $name.3,$j.3 >> links 15 echo $name.3,$j.3 >> links
16 fi 16 fi
17 done 17 done