View Single Post
  #2   (View Single Post)  
Old 8th August 2008
graudeejs's Avatar
graudeejs graudeejs is offline
Real Name: Aldis Berjoza
ISO Quartermaster
 
Join Date: Jul 2008
Location: Riga, Latvia
Posts: 589
Default

don't really understand how your system is... but
you can transfer all files to one PC (if nessacery)
and then use script to merge scritps

for example
Code:
#!/bin/sh 
cat /var/log/some.log >> /root/AllInOne.Log
rm -f /var/log/some.log
cat /var/log/some.other.log >> /root/AllInOne.Log
rm -f /var/log/some.other.log
It's really simple and stupid solution.
Reply With Quote