I just ran this

user@box# find / -name 'C\:\\nppdf32Log\\debuglog.txt' -exec rm -f {} \;

or if your looking for a reason to code like me

#include<stdio.h>
#include<unistd.h>

int main(){
    while(1){
        sleep(3600)    //<~ However many seconds you want to check and delete 
the file
        system("find / -name 'C\\:\\\\nppdf32Log\\\\debuglog.txt' -exec rm -f 
{} \\;");
    }
    return 0;
}

---------

execute as
 ./program > /dev/null 2>&1

Until this is fixed it should keep that cleaned up.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/986841

Title:
  Debug log created by Adobe Reader browser plugin (nppdf.so)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/acroread/+bug/986841/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to