#!/bin/bash
echo "Content-type: text/html"
echo ""
echo '<html>'
echo '<head>'
echo '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">'
echo '<title>Sensors info</title>'
echo '</head>'
echo '<body>'
#df -h | grep "/dev/sda7"
df -h
echo '<br>'
echo '</body>'
echo '</html>'