source: sicp/rmrecursivo

Last change on this file was 058c4c4, checked in by eparedes <eparedes@…>, 9 years ago

Funcionalidad Cadena Productiva Fuentes Diversas: Encuesta Industrial

  • Property mode set to 100755
File size: 216 bytes
Line 
1#!/bin/bash
2#Borrar de manera recursiva los ficheros inutiles.
3
4echo Directorio Raiz: $PWD
5echo Procesando...
6
7find $PWD \( -name \*~ -or -name \*.o -or -name \*\# -or -name \*.pyc \) -exec rm -vf {} \;
8
9echo Listo!
Note: See TracBrowser for help on using the repository browser.