diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-01-05 13:57:48 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2021-01-05 17:38:13 (EST) |
commit | c4f21277eeb379fd9b4995e82d01ec301902515c (patch) | |
tree | e2145578045467dc9623751da228fd18feb8401e | |
parent | 2ce76369d6aeab9b983570780ea3fa60b358d5b5 (diff) |
extract-copyright-comments: Drop author, written
-rwxr-xr-x | extract-copyright-comments | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extract-copyright-comments b/extract-copyright-comments index 0b26731..9cbf6bf 100755 --- a/extract-copyright-comments +++ b/extract-copyright-comments @@ -61,7 +61,7 @@ extract_cxx_comment() done if printf '%s' "${comment}" | grep -Eqi \ - 'copyright|\(c\)|author|written|license|public domain' + 'copyright|\(c\)|license|public domain' then printf '\t%s\n' "${indent}${comment}" fi @@ -101,7 +101,7 @@ extract_c_comment() done if printf '%s' "${comment}" | grep -Eqi \ - 'copyright|\(c\)|author|written|license|public domain' + 'copyright|\(c\)|license|public domain' then printf '%s\n' "${indent}${comment}" | sed 's/^/\t/' fi |