5 lines
117 B
Plaintext
5 lines
117 B
Plaintext
|
#!/bin/bash
|
||
|
print_mem(){
|
||
|
free --mebi | sed -n '2{p;q}' | awk '{printf ("🧠 %2.2fGiB", ( $3 / 1024) )}'
|
||
|
}
|
||
|
print_mem
|