dect
/
libnl
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
libnl/doc/gen-tags.sh

15 lines
292 B
Bash
Executable File

#!/bin/bash
#
# Based on a script found on the englinemtn-devel mailinglist
# written by Carsten Haitzler <ras...@rasterman.com>
#
for f in api/group__*.html
do
bf=$(basename $f)
grep -oE "href=\"$bf#[a-z0-9]+\">[^<]+</a>" $f |
sed 's/href="\([^"]*\)">\([^<]*\)<\/a>/\2=api\/\1/'
done