|
|
|
|
|
by Seirdy
2316 days ago
|
|
If you're looking for rooms with high activity, I put together a list of the top 30
busiest IRC channels I'm in by sorting my logs by size (descending) [0]. The command that generated the list: grep -v -c '(\-\->.*has joined|<--.*has left).*#' $WEECHAT_HOME/logs/irc.*.[#]*.weechatlog \
| tr ':' ' ' \
| sort -n -k 2 -r \
| sed -e 's#.*irc\.##' -e 's#\.weechatlog##' \
| grep -v "#channel-i'd-rather-not-show" \
| sed 30q \
| curl -F 'clbin=<-' https://clbin.com
[0]: https://clbin.com/9fcdIArchived paste: https://archive.li/4OMf3 and
https://web.archive.org/web/20200215033709/https://clbin.com... |
|