search
top

Keeping Logfiles at Bay with bash

From time to time there are instances in which an application creates logfiles that are big but you need them to fix an issue. Most times these are trace logs. Ran into a similar situation and came up with a short and simple bash script to address the issue. #!/bin/bash #################################################################### #  This will look for trace log  and zip them and deleting files... read more

top