Last active
February 25, 2017 00:16
-
-
Save mpontillo/55e217e21d3280ed851b701e0c8de622 to your computer and use it in GitHub Desktop.
Shell script to grab the strings dmidecode supports and display them as JSON with jq
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# via http://git.savannah.nongnu.org/cgit/dmidecode.git/tree/dmiopt.c#n142 | |
DMI_STRINGS=" | |
bios-vendor | |
bios-version | |
bios-release-date | |
system-manufacturer | |
system-product-name | |
system-version | |
system-serial-number | |
system-uuid | |
baseboard-manufacturer | |
baseboard-product-name | |
baseboard-version | |
baseboard-serial-number | |
baseboard-asset-tag | |
chassis-manufacturer | |
chassis-type | |
chassis-version | |
chassis-serial-number | |
chassis-asset-tag | |
processor-family | |
processor-manufacturer | |
processor-version | |
processor-frequency | |
" | |
COMMAND=( | |
"jq" | |
"-n" | |
) | |
OUTPUT_DESC="{" | |
for key in $DMI_STRINGS; do | |
_key=$(echo "$key" | sed 's/-/_/g') | |
novalue=0 | |
value="$(dmidecode "$@" -s $key)" || novalue=1 | |
if [ $novalue -eq 1 ]; then | |
COMMAND+=( | |
"--argjson" | |
"$_key" | |
"null" | |
) | |
else | |
COMMAND+=( | |
"--arg" | |
"$_key" | |
"$value" | |
) | |
fi | |
OUTPUT_DESC="$OUTPUT_DESC \$$_key," | |
done | |
OUTPUT_DESC="$OUTPUT_DESC }" | |
"${COMMAND[@]}" "$OUTPUT_DESC" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment