7 lines
121 B
Bash
7 lines
121 B
Bash
#!/bin/sh
|
|
if grep -sqo rdrand /proc/cpuinfo; then
|
|
echo "{ \"rdrand\" : true }"
|
|
else
|
|
echo "{ \"rdrand\" : false }"
|
|
fi
|