This commit is contained in:
Carl Pearson
2021-11-25 06:18:51 -08:00
parent d5feeadd7d
commit 82568c2166

View File

@@ -0,0 +1,8 @@
# remove a directory if it contains a file that matches grep
for d in *; do
grep -R "coordinate integer" $d > /dev/null
if [[ 0 = $? ]]; then
rm -rfv $d
fi
done