mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 18:00:15 +01:00
11 lines
89 B
Perl
11 lines
89 B
Perl
|
#!/usr/bin/perl
|
||
|
|
||
|
#
|
||
|
# gre.pl
|
||
|
#
|
||
|
|
||
|
while (<STDIN>) {
|
||
|
s/\[Embed\]/\[$ARGV[0]\]/;
|
||
|
print;
|
||
|
}
|