Unverified Commit be4745b2 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

fix: Display size in iec format (#400)

parent fca0a719
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ do
  if [ -f "$file" ]; then
    bytes=$(du -sb "$file" | cut -f1)
    if (( bytes > 1000 )); then
      size=$(echo "$bytes" | numfmt --to=si --suffix=B  | sed -r 's/([A-Z])/ \1/')
      size=$(echo "$bytes" | numfmt --to=iec --suffix=B  | sed -r 's/([A-Z])/ \1/')
      echo "${body//(\[P\])/($size)}"> "$info"
    fi
  fi