KingPin Posted August 14, 2012 Report Share Posted August 14, 2012 public access to TC public channel logs. updated once every 24 hours. Index of /irclog/ post any issues you may have. 1 Link to comment Share on other sites More sharing options...
Vexar Posted August 15, 2012 Report Share Posted August 15, 2012 Nice work. Would it be possible to filter out the Joins/Leaves to make the logs smaller and more readable? Link to comment Share on other sites More sharing options...
KingPin Posted August 15, 2012 Author Report Share Posted August 15, 2012 unfortunately there is no official way to get logs from rizon, these logs are from a BNC client always attached to the server which sees joins and parts. if anyone wishes to write some sed magic to remove said (hah) joins and parts I would look into making use of it Edit* while I was looking into that, heres some stats : #Trinity @ Rizon stats by KPsN 1 Link to comment Share on other sites More sharing options...
Athena Posted August 15, 2012 Report Share Posted August 15, 2012 unfortunately there is no official way to get logs from rizon, these logs are from a BNC client always attached to the server which sees joins and parts. if anyone wishes to write some sed magic to remove said (hah) joins and parts I would look into making use of it In linux? for file in logs/*.log; do sed '*** Joins' $file for file in logs/*.log; do sed '*** Quits' $file for file in logs/*.log; do sed '*** TRiNiTY' $file for file in logs/*.log; do sed 'is now known' $file for file in logs/*.log; do sed '*** LimitServ' $file for file in logs/*.log; do sed '*** irc.rizon.io' $file for file in logs/*.log; do sed '*** irc.rizon.io' $file I think it covers all unwanted entry's. Link to comment Share on other sites More sharing options...
KingPin Posted August 15, 2012 Author Report Share Posted August 15, 2012 ugh its kinda late, i read it wrong. it doesnt seem to work but we shall see what does. Edit* well this works wonders : sed -i.bak '/\*\*\* Joins/d' *.log[/CODE] and so on. Link to comment Share on other sites More sharing options...
Athena Posted August 15, 2012 Report Share Posted August 15, 2012 Don't forget the 'is now known' lines. and the '***' lines of the server. Link to comment Share on other sites More sharing options...
KingPin Posted August 15, 2012 Author Report Share Posted August 15, 2012 all mode set lines removed. cron line fixed to run once every 24 hours instead of hourly. 1 Link to comment Share on other sites More sharing options...
Recommended Posts