mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
3ceadb16c3
(Bug 167795, r=chak, sr=leaf)
11 lines
89 B
Perl
11 lines
89 B
Perl
#!/usr/bin/perl
|
|
|
|
#
|
|
# gre.pl
|
|
#
|
|
|
|
while (<STDIN>) {
|
|
s/\[Embed\]/\[$ARGV[0]\]/;
|
|
print;
|
|
}
|