1
0
mirror of https://github.com/tboerger/nixos-config synced 2025-04-06 07:19:05 +02:00
github.com-tboerger-nixos-c.../profiles/thomas/scripts/each-dir.sh
2024-11-24 16:13:14 +01:00

9 lines
208 B
Bash

#!/usr/bin/env bash
for DIR in $(find $(pwd) -mindepth 1 -maxdepth 1 -type d -a -not -iname _\* | sort); do
echo "-----> $(basename ${DIR})"
pushd ${DIR} >/dev/null
"$@"
popd >/dev/null
done