Home | History | Annotate | Download | only in doc
      1 #!/bin/bash
      2 
      3 #
      4 # Based on a script found on the englinemtn-devel mailinglist
      5 # written by Carsten Haitzler <ras... (at] rasterman.com>
      6 #
      7 
      8 for f in api/group__*.html
      9 do
     10 	bf=$(basename $f)
     11 
     12 	grep -oE "href=\"$bf#[a-z0-9]+\">[^<]+</a>" $f |
     13 		sed 's/href="\([^"]*\)">\([^<]*\)<\/a>/\2=api\/\1/'
     14 done
     15