#!/bin/bash
# Apply CSS style to 'filemangler.html'
# 
# Author: Mahlon R. Smith - The Software Samurai
# Date  : 29-Jan-2025

if [ -e filemangler.html ]; then

   if [ -e applycss_response.txt ]; then

      idpp -cV filemangler.html
#      idpp -ciV --response=applycss_response.txt filemangler.html

   else
      echo 'applycss_response.txt not found'
   fi

else
   echo 'filemangler.html not found'
fi