#!/bin/bash -eu cd "$(dirname "$0")" for d in */; do (cd "$d" && make clean install) done