LoginSignup
9
10

More than 5 years have passed since last update.

svnで最終変更リビジョンの取得方法

Posted at
バージョン取得方法
Last_Changed_Rev=`LC_ALL=en_US.UTF8 svn info "SVNのURL" | grep 'Last Changed Rev' | grep -o "[0-9]*"`

解説

取得しやすくするため英語でinfoを出力。

LC_ALL=en_US.UTF8

URLの情報を出力

svn info "SVNのURL"

infoで出力されたもののうち、「Revision: 822」の数値部分を抜き出す。

grep 'Last Changed Rev' | grep -o "[0-9]*"
9
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
10