lib_bin/clean_targets.sh

7 lines
84 B
Bash
Raw Normal View History

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