Perform text transformations on input file
<!--#include file="streamedit-header.html.in"--> <p>Hi <b>${NAME}</b>. <p>You got a really cool hobby. <br>I'm sure that your hobby, <b>${HOBBY}</b>, can give you more fun in your life time. <p>Bye :) <!--#include file="streamedit-tailer.html.in"-->
Q_ENTRY *args = qEntryInit(); args = qEntryPutStr(args, "${NAME}", "The qDecoder Project"); args = qEntryPutStr(args, "${HOBBY}", "Open Source Project"); qSedFile(args, "streamedit.html.in", stdout); qEntryFree(args);
|