mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-25 03:12:49 +00:00
11 lines
272 B
Raku
Executable file
11 lines
272 B
Raku
Executable file
#!/usr/bin/perl
|
|
|
|
while(<>) {
|
|
$treatAllAsSessionCookies = 1 if (/IgnoreExpirationDate=true/);
|
|
}
|
|
|
|
printf("# DELETE IgnoreExpirationDate\n");
|
|
if ($treatAllAsSessionCookies) {
|
|
printf("# DELETE CookieGlobalAdvice\n");
|
|
printf("CookieGlobalAdvice=AcceptForSession\n");
|
|
}
|