#!/bin/sh # Test if gnuplot exists on the system command -v gnuplot >/dev/null 2>&1 || { echo "gnuplot not found - skipping graph creation" 1>&2 exit 1 } gnuplot<