Remove old pidgin logs
This command will find all your Pidgin (libpurple) log files that are more than 30 days old and remove them.
find ~/.purple/logs/ -type f -ctime +30 -exec rm {} \;
This command will find all your Pidgin (libpurple) log files that are more than 30 days old and remove them.
find ~/.purple/logs/ -type f -ctime +30 -exec rm {} \;