mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-03-22 13:10:41 +08:00
9 lines
105 B
Perl
9 lines
105 B
Perl
|
#!/usr/bin/env perl
|
||
|
|
||
|
while (<>) {
|
||
|
s/window\.sjcl\s*=/var sjcl=/g;
|
||
|
s/window\.sjcl/sjcl/g;
|
||
|
print;
|
||
|
}
|
||
|
|