3 if [ "$1" = "autoconf" ]; then
8 if [ "$1" = "config" ]; then
9 echo "graph_title irc channel users"
10 echo "graph_info This graph shows the usercounts in selected channels"
11 echo "graph_category irc"
12 echo "graph_printf %.0lf"
14 cat /tmp/irc/channels.txt | grep "#" | sed -E -e 's~#~~g' -e 's~[^a-zA-Z0-9 ]~_~g' | sort -u | sort -k 2nr | awk '{print $1".label "$1"\n"$1".draw LINE2" }' | head -n 15
18 cat /tmp/irc/channels.txt | grep "#" | sed -E -e 's~#~~g' -e 's~[^a-zA-Z0-9 ]~_~g' | sort -u | sort -k 2nr | awk '{print $1".value "$2 }' | head -n 15