Created
August 22, 2012 00:52
-
-
Save ngyuki/3421011 to your computer and use it in GitHub Desktop.
svn で author の一覧を取得するワンライナー
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# author の一覧を取得 | |
svn log -q $URL | grep -v "^----" | cut -d "|" -f2 | sort | uniq | |
# 作業ディレクトリ内で実行する場合 | |
svn log -q | grep -v "^----" | cut -d "|" -f2 | sort | uniq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment