I'm wondering if someone can help me accomplish this operation from within Java.
zcat -f -- $(ls -t a_log_file.log*) > combined.log
Where there is a_log_file.log
, a_log_file.log.gz.1
, a_log_file.log.gz.2
...
I haven't been able to find anything that isn't rather intricate. I suppose, I could also somehow just run this from Java but that feels like a wrong solution.
You'll have to put in some exception handling. Also this doesn't do the already gzipped logs. I assumed that part