3 lines
87 B
Bash
Executable file
3 lines
87 B
Bash
Executable file
#!/bin/bash
|
|
mem="$(free -h | awk '/^Mem:/ {print $3 "/" $2}')"
|
|
echo -e " RAM: [$mem] "
|