Thursday, October 23, 2008

Borrar todos los archivos .svn de una carpeta

find . -type d -name .svn -print0 | xargs -0 -t rm -Rf

Agregar un directorio apache

Alias /eclipse "/home/adriana/workspace/"
<directory>
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</directory>

Reiniciar apache en ubuntu

sudo /etc/init.d/apache2 restart