mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
e6a18315be
r=adamlock, sr=darin
11 lines
89 B
Perl
11 lines
89 B
Perl
#!/usr/bin/perl
|
|
|
|
#
|
|
# mre.pl
|
|
#
|
|
|
|
while (<STDIN>) {
|
|
s/\[Embed\]/\[$ARGV[0]\]/;
|
|
print;
|
|
}
|