[Feature Request]: check/ck_mem_size
: check if current memory size is not less than given value
#72
Labels
Milestone
Is there an existing issue for the feature request?
Feature Description
check if current memory size is not less than given value
Feature Implementation
Linux:
free -x | sed -n '2p' | awk '{print $2}'
, where x=k|m|gMac:
sysctl hw.memsize | awk -F ":" '{print $2}' | sed 's/ //g'
, where unit is bytesAdditional information
No response
The text was updated successfully, but these errors were encountered: