4 lines
92 B
Bash
Executable File
4 lines
92 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find . -regextype posix-egrep -regex ".*(bin|obj)" -type d -exec rm -drv {} \;
|