5 lines
74 B
Bash
5 lines
74 B
Bash
#!/bin/sh
|
|
rm -Rf .import
|
|
find . -type f -name '*.mesh' -exec rm '{}' ';'
|
|
|
#!/bin/sh
|
|
rm -Rf .import
|
|
find . -type f -name '*.mesh' -exec rm '{}' ';'
|
|
|