Sep 5, 2009 2
How can i remove all generated symfony base files automatically from svn?
call this from your project root
for DIR in `find lib -name base -type d`; do svn propset svn:ignore base $DIR/..;svn rm $DIR; done;
Sep 5, 2009 2
call this from your project root
for DIR in `find lib -name base -type d`; do svn propset svn:ignore base $DIR/..;svn rm $DIR; done;
Mar 11, 2009 0
Some questions some awnsers. For each command you can find more options with
man command
simple use diff
diff file1 file2with the option -a
cp source target -a
use cat
cat -A file
svn export http://framework.zend.com/svn/framework/standard/tags/release-1.7.6/library/Zend/Acl.php
for DIR in `find . -name .svn -type d`; do rm $DIR -Rf; done;
simple with tree
tree directory
Recent Comments