#!/bin/bash

type edac-util &>/dev/null
if [[ $? == 0 ]] ; then
    echo '<<<edac>>>'
    edac-util 2>&1
fi
