rs-basic/for_each_crate.sh
Christoph J. Scherr ce71b2ceec
Some checks failed
cargo devel CI / cargo CI (push) Failing after 32s
reorganize the workspace
2025-03-14 22:24:47 +01:00

11 lines
122 B
Bash
Executable file

#!/bin/bash
root=$PWD
DIRS=$(ls ./crates)
echo $DIRS
for dir in $DIRS; do
cd crates/$dir;
eval "$@";
cd $root;
done;