4 lines
77 B
Plaintext
4 lines
77 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
printf "%.0f\n" $(free -m | grep Mem | awk '{print ($3/$2)*100}')
|