repo.or.cz
/
gromacs
/
qmmm-gamess-us.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
minor fixes in ditribution files
[gromacs/qmmm-gamess-us.git]
/
src
/
contrib
/
scripts
/
comment-pairs
blob
3b383cc674efad5f8a1299c4c972d442dbf9d90a
1
#!/usr/bin/awk -f
2
3
BEGIN
{
pre=
""
; }
4
/
^\
[/ {
pre=
""
; }
5
/
pairs
/ {
pre=
";"
; }
6
7
{
print
pre$
0
; }
8
9
#last line