Add utility to dump specified file to stdout.

This commit is contained in:
Chris Lamb 2008-10-22 20:08:56 +01:00 committed by Daniel Baumann
parent f1d230a6b5
commit 568f905c51
1 changed files with 8 additions and 0 deletions

View File

@ -79,3 +79,11 @@ Echo_breakage ()
Echo_message "${@}"
}
Echo_file ()
{
while read LINE
do
echo "${1}: ${LINE}"
done < "${1}"
}