#!/bin/bash
# Apply CSS style to 'crcplus.html'
# 
# Author: Mahlon R. Smith - The Software Samurai
# Date  : 23-Feb-2017

if [ -e crcplus.html ]; then

   if [ -e applycss_response.txt ]; then

      idpp -tco --table_border=all crcplus.html <applycss_response.txt

   else
      echo 'applycss_response.txt not found'
   fi

else
   echo 'crcplus.html not found'
fi