8 lines
105 B
Perl
Executable file
8 lines
105 B
Perl
Executable file
#!/usr/bin/env perl
|
|
|
|
while (<>) {
|
|
s/window\.sjcl\s*=/var sjcl=/g;
|
|
s/window\.sjcl/sjcl/g;
|
|
print;
|
|
}
|
|
|