25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
tdelibs/tdeio/useragent.pl

14 satır
369 B

#!/usr/bin/perl
# the script is called with interpreter, so don't worry about the path
while(<>)
{
if (($key, $domain, $useragent, $comment) = ($_ =~ /(Entry\d)=\.?([^:]+)::([^:]+)::([^\n]+)/))
{
printf ("[%s]\n", $domain);
printf ("UserAgent=%s\n", $useragent);
printf ("# DELETE %s\n", $key);
}
}
printf ("# DELETE EntriesCount\n");