forked from Cray-HPE/docs-csm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoc.sh
executable file
·65 lines (59 loc) · 1.33 KB
/
toc.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/bash
# Copyright 2021 Hewlett Packard Enterprise Development LP
set -u
# dump table-of-contents to stdout
# usage:
#
# all pages
#
# ./toc.sh
#
# pages 050-059)
#
# ./toc.sh 05
#
# namespace patterns
#
# ./toc.sh *-CSM-*
#
# product patterns
#
# ./toc.sh *-NCN-*
# one file:
#
# ./toc.sh README
#
pattern=${1%%.*}
# Normalize grep in case one has it usefully bound to some short-cut.
# (devs can reload their .bashrc/.profile/.bash_profile to fix this after).
unalias grep >/dev/null 2>&1
# match one or more; bail if zero, read the error.
for file in ${pattern}*.md; do
# trim...
fname="$file"
fname="${fname#"${fname%%[![:space:]]*}"}" # remove leading whitespace characters
fname="${fname%"${fname##*[![:space:]]}"}" # remove trailing whitespace characters
printf "::%s\n" "$fname::"
# the needful...
cat $file |\
grep "^#" |\
sed 's|^[ ]*||g' |\
awk -F, '\
BEGIN {
}{
basic_name=$1;
anchor=basic_name
basic_name_no_hash=basic_name
gsub(/^[#]* /,"",basic_name_no_hash)
gsub(/[ ]*$/,"",basic_name_no_hash)
subs_string=basic_name
subs = gsub(/#/,"",subs_string);
gsub(/^[#]+ /,"",anchor);
gsub(/ /,"-",anchor);
anchor = tolower(anchor);
{for (i=0;i<subs-1;i++) printf " " }
print "* [" basic_name_no_hash "]('$fname'#" anchor ") <a name=\"" anchor "\"></a>";
}
END {
}'
done