lib_bin/clean_debug.sh

7 lines
90 B
Bash
Raw Permalink Normal View History

2021-09-01 19:44:18 +00:00
#!/bin/bash
for it in $(find . | grep "target/debug$")
do
echo "$it"
rm -r "$it"
done