#!/bin/bash

Version=1.0.2
Script=FakeAstyleScript

echo "TEST: Simulated astyle-new v$Version: Pretending to do style adjustments on file $1"

grep 'Making It Stylish' $1 > /dev/null 2>&1

if [[ $? -ne 0 ]]; then
   echo Making It Stylish >> $1
fi