#!/bin/bash
#
# colortailbug_RUN_ME
#

#________________________________________
#
# Execute this script to see the bug!
#
# $ ./colortailbug_RUN_ME
#________________________________________
#

# Remove the output file, then 'touch' it:
rm -f colortailbug_output.txt
touch colortailbug_output.txt

# Start appending text to the output file IN THE BACKGROUND
# (there is a two-second delay at the beginning of this script):
./colortailbug_text_source.sh >> colortailbug_output.txt &

# Start colortail in FOLLOW mode looking at the outout file:
colortail -k colortailbug_conf_file.txt --follow colortailbug_output.txt

