freem

Crates.iofreem
lib.rsfreem
version0.4.0
created_at2025-05-15 12:58:07.225901+00
updated_at2025-06-05 16:21:11.382299+00
descriptionMemory check command
homepage
repository
max_upload_size
id1674936
size16,461
u (ulissesjdeo)

documentation

README

freem

Memory check command


Simple memory check command to see total memory, swap, cache... just like linux "free" command, but it works everywhere.


Install

cargo install freem

Usage

freem
┌────────┬──────────┬──────────┬──────────┬────────┬────────────┬───────────┐
│        │ total    │ used     │ free     │ shared │ buff/cache │ available │
├────────┼──────────┼──────────┼──────────┼────────┼────────────┼───────────┤
│ Memory │ 28943804 │ 11107992 │ 17835812 │ 0      │ 0          │ 17835812  │
│ Swap   │ 1835008  │        0 │  1835008 │        │            │           │
└────────┴──────────┴──────────┴──────────┴────────┴────────────┴───────────┘

With you wanna see in megabytes, just use -m

freem -m
┌────────┬───────┬───────┬───────┬────────┬────────────┬───────────┐
│        │ total │ used  │ free  │ shared │ buff/cache │ available │
├────────┼───────┼───────┼───────┼────────┼────────────┼───────────┤
│ Memory │ 28265 │ 11102 │ 17163 │ 0      │ 0          │ 17162     │
│ Swap   │ 1792  │     0 │  1792 │        │            │           │
└────────┴───────┴───────┴───────┴────────┴────────────┴───────────┘

Or even gigabytes just -g

freem -g
┌────────┬───────┬──────┬──────┬────────┬────────────┬───────────┐
│        │ total │ used │ free │ shared │ buff/cache │ available │
├────────┼───────┼──────┼──────┼────────┼────────────┼───────────┤
│ Memory │ 27    │   10 │   17 │ 0      │ 0          │ 16        │
│ Swap   │ 1     │    0 │    1 │        │            │           │
└────────┴───────┴──────┴──────┴────────┴────────────┴───────────┘
Commit count: 0

cargo fmt