Method to display a line at the top always, regardless of stdout

Hi

Is there way to, say, echo a line and make sure it is always displayed on the first line, no matter what is coming out on stdout?

eg:

#!/bin/bash
clear
echo " ...... Internal audit script ......"
tar xvf hugefile.tar

I'd like to have the " Internal audit script " line to be shown always on the top row, even as the screen scrolls with the output of tar extraction.

Thanks

echo -e "\e[1;1H ...... Internal audit script ......"
tar xvf hugefile.tar

Thanks, this will echo to first line, but it doesnt stay there when the screen starts scrolling with the output from tar.