#!/usr/bin/env bash for d in $(find -- */ -maxdepth 0 -type d | cut -f1 -d '/'); do ( stow -t "$HOME" "$d" ) done