- removed legacy foamDiffSourceList, foamPackChanged - added foamPackDoxygen for separate distribution of docs handles -prefix option - misc. cosmetic changes
4 lines
169 B
Bash
Executable File
4 lines
169 B
Bash
Executable File
#!/bin/sh
|
|
# find . \( -name 'core' \) -exec ls -l {} \; -exec rm {} \;
|
|
find . \( -type f -name 'core' -o -name 'core.[1-9]*' -o -name 'vgcore.*' \) -print | xargs -t rm
|