#!/bin/bash

for i in `./list_lists -b`;
do 
echo -n $i
echo -n "   	"
./list_members $i | wc -l
done;

