mirror of
https://github.com/tboerger/nixos-config
synced 2025-04-06 07:19:05 +02:00
9 lines
208 B
Bash
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
|