Changeset 1405 for trunk/scripts

Show
Ignore:
Timestamp:
08/15/04 14:00:29 (4 years ago)
Author:
pmoura
Message:

Corrected bug with path names containing spaces.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/scripts/cleandist.sh

    r1035 r1405  
    11#!/bin/sh 
    22 
    3 find . -name CVS -print | xargs rm -rf 
    4 find . -name .cvsignore -print | xargs rm -f 
    5 find . -name '.#*' -print | xargs rm -f 
    6 find . -name .DS_Store -print | xargs rm -f 
    7 find . -name '.gdb*' -print | xargs rm -f 
     3find . -name CVS -print0 | xargs -0 rm -rf 
     4find . -name .cvsignore -print0 | xargs -0 rm -f 
     5find . -name '.#*' -print0 | xargs -0 rm -f 
     6find . -name .DS_Store -print0 | xargs -0 rm -f 
     7find . -name '.gdb*' -print0 | xargs -0 rm -f