mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
7 lines
117 B
Bash
Executable File
7 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
|
|
MEM=`sysctl hw.realmem | sed "s|hw.realmem: ||g"`
|
|
MEM=`expr $MEM / 1024`
|
|
MEM=`expr $MEM / 1024`
|
|
echo $MEM
|