repo.or.cz
/
OpenFOAM-1.5.x.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
missing debug symbol
[OpenFOAM-1.5.x.git]
/
bin
/
rmcore
blob
1245878ff311755659c7fbe23b8c054e803d2b0a
1
#!/bin/sh
2
# find . \( -name 'core' \) -exec ls -l {} \; -exec rm {} \;
3
find
. \
(
-type
f
-name
'core'
-o -name
'core.[1-9]*'
-o -name
'vgcore.*'
\
)
-print
|
xargs
-t
rm