in reply to Paste comments in a document
where fetch_comment fetches the appropriate comment from the database.my $id; while (<>) { if (/^====EDO=(\w+)=====$/) { $id = $1; } print; if (/^UNIX Page:/ && defined($id)) { print("\nComment ", fetch_comment($id), "\n"); } }
|
|---|