7 lines
90 B
Bash
Executable File
7 lines
90 B
Bash
Executable File
#!/bin/bash
|
|
for it in $(find . | grep "target/debug$")
|
|
do
|
|
echo "$it"
|
|
rm -r "$it"
|
|
done
|