Welcome, guest | Sign In | My Account | Store | Cart
# Convert to MB
proc toMB {n} {
    return [expr {$n / (1024*1024)}]
}

History