How to escape @ characters in Subversion managed file names?

后端 未结 11 1365
不知归路
不知归路 2020-11-28 01:49

For many Subversion operations, appending the \'@\' symbol to the end of a file or URL argument allows you to target a specific revision of that file. For example, \"svn in

11条回答
  •  清酒与你
    2020-11-28 02:07

    I had the problem today with filenames generated from email addresses (not a very good idea!).

    Solution, using printf options of find, and shell expansion

     svn add  $(find . -name "*@*.png" -printf "%p@ ")
    

提交回复
热议问题