使用Unix';find';一次在多个文件上设置svn Id
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Unix';find';一次在多个文件上设置svn Id相关的知识,希望对你有一定的参考价值。
There may be an easier way to do this, but if there is I can't find it. This sets the svn property $Id$ of every javascript file in the app/lib directory.
# this affects already existing files find app/lib/ -type f -name '*.js' -exec svn propset svn:keywords "Id" {} \; -print # OR, for files added later, you can edit ~/.subversion/config [miscellany] enable-auto-props = yes [auto-props] *.js = svn:keywords=Id
以上是关于使用Unix';find';一次在多个文件上设置svn Id的主要内容,如果未能解决你的问题,请参考以下文章