mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
19 lines
409 B
Bash
Executable File
19 lines
409 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# foreach <folder> <commands that should be run to each file>
|
|
# foreach "ls -d */" "git status" # run git status in each folder
|
|
#
|
|
# Source: https://github.com/mvdan/dotfiles/blob/master/.bin/foreach
|
|
|
|
cmd=$1
|
|
shift
|
|
|
|
for dir in $($cmd); do
|
|
(
|
|
echo "$dir"
|
|
cd "$dir" || exit 1
|
|
# shellcheck disable=SC2294,SC2034
|
|
eval "$@" # allow multiple commands like "foo && bar"
|
|
)
|
|
done
|