This commit is contained in:
Ismo Vuorinen
2022-12-15 14:38:32 +02:00
parent 6dc5849f9c
commit 2369eae0ef

16
local/bin/foreach Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
#
# foreach <folder> <commands that should be run to each file>
#
# Source: https://github.com/mvdan/dotfiles/blob/master/.bin/foreach
cmd=$1
shift
for dir in $($cmd); do
(
echo "$dir"
cd "$dir" || exit 1
eval "$@" # allow multiple commands like "foo && bar"
)
done