gettext_to_separated.pl 182 B

12345678910111213
  1. #! /usr/bin/perl -w
  2. use strict;
  3. my $msgtxt = '';
  4. my $separator = '||qg::fd||';
  5. while (<STDIN>)
  6. {
  7. $msgtxt .= $_;
  8. }
  9. print "$ENV{'MSGEXEC_MSGID'}$separator\n$msgtxt$separator\n";