Home / adapters / clean.sh
#!/bin/bash for directory in *; do if [[ -d $directory ]]; then mvn -f $directory/pom.xml clean & fi done wait