Update release downloads
[docs.git] / find_bad_words.sh
1 #Search for older releases
2 egrep --color -nir --include=*.rst beryllium\|lithium docs
3
4 #Search for misspellings and miss-capitalizations of OpenFlow
5 egrep --color -nir --include=*.rst open\ ?flow docs | grep -v OpenFlow | grep -v openflow: | grep -v \-openflow\- | grep -v openflowplugin | grep -v openflowjava | grep -v Openflow13 | grep -v \_OPENFLOW | grep -v OpenflowNode | grep --color -i OpenFlow
6
7 #Search for misspellings and miss-capitalizations of OpenDaylight
8 egrep --color -nir --include=*.rst open\ ?daylight docs | grep -v OpenDaylight | grep -v \.opendaylight\. | grep -v \/opendaylight | grep -v \=opendaylight | grep --color -i OpenDaylight
9
10 #Search for misspellings and miss-capitalizations of ACL
11 egrep --color -nir --include=*.rst [^-]acl[^-_\":] docs | grep -v ACL | grep -vi maclearn | grep -vi oracle | grep --color -i acl
12
13 #the ovs[db] search seemed to produce only false positives
14 #egrep --color -nir --include=*.rst [^-/_\"\']ovs[^-:k_] docs | grep -v OVS | egrep -v ovsdb[:-] | grep --color -i ovs
15
16 #Search for git.opendaylight.org links to the next release as opposed the current release
17 #   Note that past releases are caught above
18 egrep --color -nir --include=*.rst hb=HEAD docs
19 egrep --color -nir --include=*.rst hb=master docs
20
21 #Search for links to jenkins.opendaylight.org and logs.opendaylight.org, which are temporary
22 egrep --color -nir --include=*.rst jenkins\.opendaylight\.org docs
23 egrep --color -nir --include=*.rst logs\.opendaylight\.org docs