4 lines
80 B
Bash
4 lines
80 B
Bash
#!/bin/sh
|
|
find . -iname "bin" | xargs rm -rf
|
|
find . -iname "obj" | xargs rm -rf
|