在 CVS 中检索文件最后提交修订的作者

Retrieve the author of the last-committed revision of a file in CVS

使用 CVS,我有一个文件列表。我想检索提交每个文件的最后修订的用户。是否有捷径可寻? CVS 的使用似乎没有提供一种简单的方法来检索特定修订的作者。

类似

cvs log -N foo.c | head -n 30 | grep -m 1 "author:"

cvs log -N -r{version} foo.c | grep "author:"

然后进一步解析输出行以获取作者信息。