diff options
author | KatolaZ <katolaz@freaknet.org> | 2020-01-07 16:03:45 +0000 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2020-01-07 16:03:45 +0000 |
commit | 8ff32130d3ca8f45aed74e69d1ed297a1605ca8a (patch) | |
tree | b8c892fbaeae889f6191c316c18bab486451675c /bib2tsv | |
parent | 400b30c947dbff3b4d8318e83ff66395fbe1f434 (diff) |
fix substitution regexp in bib2tsv
Diffstat (limited to 'bib2tsv')
-rwxr-xr-x | bib2tsv | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ cat | awk ' /^\}[ ]*$/{ - gsub("/^[[:blank:]]+/", "") + gsub("^[[:blank:]]+", "") print cur"\t"$0"\n" } |