用于向 svn:ignore 添加行的 oneliner

oneliner for add line to svn:ignore

$ svn pg svn:ignore .
file1
file2
file3
$ svn pe svn:ignore .
// manually add file4 in default text editor

如何在一行命令中使用 bash 添加 file4svn:ignore

当然不优雅,但它有效:

svn propget svn:ignore . > /tmp/svnproperties && echo "file4" >> /tmp/svnproperties && svn propset svn:ignore . --file /tmp/svnproperties