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