#!/bin/bash
# Apply CSS style to 'ctrash.html'
# 
# Author: Mahlon R. Smith - The Software Samurai
# Date  : 17-Jan-2020

if [ -e ctrash.html ]; then

   if [ -e applycss_response.txt ]; then

      idpp -ci --response=applycss_response.txt ctrash.html

   else
      echo 'applycss_response.txt not found'
   fi

else
   echo 'ctrash.html not found'
fi