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