lib_bin/clean_targets.sh
2021-09-01 20:44:18 +01:00

7 lines
84 B
Bash
Executable File

#!/bin/bash
for it in $(find . | grep "target$")
do
echo "$it"
rm -r "$it"
done