You can use kgshoover.pl along with a file containing a list of KGS usernames to download
those player's game archives.
This script is acceptable to Willaim Shubert provided the 4 second delay is not removed.
See kgshoover.pl for more information.

I found the following bash scripts useful in organising my sgf files.
You will need to change the paths to suit your file system.

untar.sh

#!/bin/bash
for i in $(find ../../more/KGS/tar -mtime 0); do
    tar --directory=../../more/KGS/sgf -xvf $i
done

This script unpacks the tar files downloaded by kgshoover.pl and puts them in the directory ./sgf

move.sh

#!/bin/bash
for i in $(grep -Rl "SZ\[13\]" ../../more/KGS/sgf); do
    echo moving $i
    mv $i ../../more/KGS/13x13
done

This script moves all sgf files in the ./sgf directory from 13x13 games into the ./13x13 directory.

tags.sh

#!/bin/bash
for i in $(find ../../more/KGS/sgf -name '*.sgf'  ); do
    echo $i
    perl removeTags.pl $i
done

This script applies the perl script removeTags.pl to all the sgf files in ./sgf

D.Gilder 2007
