fmt.sh 164 B

12345678
  1. ARGS=()
  2. for crate in relibc $(find src -name Cargo.toml | cut -d '/' -f2 | grep -v template)
  3. do
  4. ARGS+=("--package" "$crate")
  5. done
  6. cargo fmt "${ARGS[@]}" "$@"