source: sipes/cord/scripts/code-clean.sh @ 8a8efa8

stableversion-3.0
Last change on this file since 8a8efa8 was b354002, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio del cord

  • Propiedad mode establecida a 100755
File size: 569 octetos
Línea 
1#!/bin/sh
2
3find . -name "*~" -type f | xargs rm -f
4find . -name ".#*" -type f | xargs rm -f
5find . -name "*.rej" -type f | xargs rm -f
6find . -name "*.orig" -type f | xargs rm -f
7find . -name "DEADJOE" -type f | xargs rm -f
8find . -type f | grep -v ".psp" | grep -v ".gif" | grep -v ".jpg" | grep -v ".png" | grep -v ".tgz" | grep -v ".ico" | grep -v "druplicon" | xargs perl -wi -pe 's/\s+$/\n/'
9find . -type f | grep -v ".psp" | grep -v ".gif" | grep -v ".jpg" | grep -v ".png" | grep -v ".tgz" | grep -v ".ico" | grep -v "druplicon" | xargs perl -wi -pe 's/\t/  /g'
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.