Remove old pidgin logs 2010-07-22 03:32pm
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 {} \;