mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-11 01:57:00 +00:00
11 lines
89 B
Perl
11 lines
89 B
Perl
#!/usr/bin/perl
|
|
|
|
#
|
|
# mre.pl
|
|
#
|
|
|
|
while (<STDIN>) {
|
|
s/\[Embed\]/\[$ARGV[0]\]/;
|
|
print;
|
|
}
|