(Bug 167795, r=chak, sr=leaf) git-svn-id: svn://10.0.0.236/trunk@129371 18797224-902f-48f8-a5cc-f745e15eee43
11 lines
89 B
Perl
11 lines
89 B
Perl
#!/usr/bin/perl
|
|
|
|
#
|
|
# gre.pl
|
|
#
|
|
|
|
while (<STDIN>) {
|
|
s/\[Embed\]/\[$ARGV[0]\]/;
|
|
print;
|
|
}
|