<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.30.3">
</HEAD>
<BODY>
Similarly I have seen a lot people use
<PRE>
 cat somefile,txt | grep $SEARCH
</PRE>
when you could and should, for a number of reasons, use this
<PRE>
 grep $SEARCH somefile.txt
</PRE>
<BR>
<BR>
On Mon, 2012-07-16 at 07:59 -0400, Carl Wilhelm Soderstrom wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE>
On 07/15 09:15 , Eric Crist wrote:
> I agree with this, though the cat part isn't needed:

> sed "s/MD5SUM_GOES_HERE/`md5sum direct.tar.bz2`/g" template.html > output.html

Thank you for the 'aha!' moment this gave me. One of those things I should
know, but never learned for whatever reason.

</PRE>
</BLOCKQUOTE>
</BODY>
</HTML>