3 total_cargo_build_space
() {
10 find "$dir" -type f
-name Cargo.toml \
11 |
while read -r cargo_toml_path
13 target_path
=$
(dirname "$cargo_toml_path")/target
;
14 if test -d "$target_path"
16 if [[ "$list" -eq 1 ]]
24 |
if [[ "$list" -eq 1 ]]
28 awk '{tot += $1} END {print tot * 1024}' | numfmt
--to=iec
49 printf 'Unknown flag: "%s"\n' "$arg" >&2
58 total_cargo_build_space
"$dir" "$list"
This page took 0.088936 seconds and 4 git commands to generate.