8 lines
224 B
Plaintext
8 lines
224 B
Plaintext
|
#!/bin/sh
|
||
|
cd ${0%/*} || exit 1 # Run from this directory
|
||
|
|
||
|
ls | grep -P "^(([0-9]+\.?[0-9]*)|(\.[0-9]+))$" | xargs -d"\n" rm -rf
|
||
|
rm -rf VTK
|
||
|
|
||
|
#------------------------------------------------------------------------------
|