projects
/
barrelfish
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Updated the README and Practical guide so that they have instructions
[barrelfish]
/
doc
/
018-Practical-guide
/
cleanTex.awk
1
#!/usr/bin/gawk -f
2
3
BEGIN {
4
pr = 0
5
}
6
7
/Generating Documentation/ {
8
pr = 0
9
}
10
11
/Barrelfish Overview/ {
12
pr = 1
13
}
14
15
{
16
if (pr ==1) {
17
print
18
}
19
}
20
21