문제

I am struggling to find list of all active users in CVS. Do anyone have any idea about the command to do so.

Thanks in advance.

도움이 되었습니까?

해결책

You could try this:

> cvs log -N 2>&1 | grep author | awk '{ print $6 }' | sort | uniq
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top