ActiveState Code

Recipe 364232: toMB


Proc to convert bytes to megabytes.

Tcl
1
2
3
4
# Convert to MB
proc toMB {n} {
    return [expr {$n / (1024*1024)}]
}

Sign in to comment