Very nice instructions so far, let's add some fun to it 
Working from the above suggestions, let me give you an optional setup
Assuming you are in /home/bob and at a shell prompt and have a quad core cpu...
mkdir sob
cd sob
mkdir sb1
mkdir sb2
mkdir sb3
mkdir sb4
extract the sob client to /home/bob/sob
cd /home/bob/sob
after editing the sclient.conf as outlined above
cp * sb1
cp * sb2
cp * sb3
cp * sb4
cd /home/bob
Create a file using vi or other editor called .screenrc-sob (the . is important in the filename)
Note: the line that starts with : hardstatus string - is one long string, watch out for line wrap...
PHP Code:
startup_message off
autodetach on
hardstatus alwayslastline
hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{=kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B}%Y-%m-%d %{W}%c %{g}]'
chdir
screen -t shell 0
chdir /home/bob/sob/sb1
screen -t sob1 1 ./sb sclient.conf
chdir /home/bob/sob/sb2
screen -t sob2 2 ./sb sclient.conf
chdir /home/bob/sob/sb3
screen -t sob3 3 ./sb sclient.conf
chdir /home/bob/sob/sb4
screen -t sob4 4 ./sb sclient.conf
Save and close it.
Next step:
in /home/bob - create one more file called start-sob using vi or some editor
put the following lines in it
PHP Code:
#!/bin/sh
screen -O -S sob-clients -c ~/.screenrc-sob
Save and close it
type chmod 755 start-sob
now just type ./start-sob
Let's create a simple utility that will help you get to your clients so you can see them working 
Create a new file called: screens
Put the following lines into it
PHP Code:
#!/bin/bash
# filters the screen -ls output to show the sesssions
sessions=`screen -ls | sed -ne 's/[[:space:]]//' -ne 's/\((Attached)\|(Detached)\)// p'`
res=`echo "$sessions" | wc -w`
if (( $res == 0 ))
then
echo " No existing SCREEN session to reattach to..."
exit
fi
echo ''
echo " CURRENT SESSIONS"
echo " ------------------------"
#screen -ls | sed -ne 's/[[:space:]]//' -ne 's/\((Attached)\|(Detached)\)// p' | cat -n
echo "$sessions" | cat -n
echo " ------------------------"
echo ''
#if first argument is not specified, script will ask for number of screen
if [ -z $1 ]
then
echo -n " Reattach to session: "
read session
else
session=$1
fi
#attach to specified session
linenum=0
name=`screen -ls | sed -ne 's/[[:space:]]//' -ne 's/\((Attached)\|(Detached)\)// p' |
while read line
do
let "linenum += 1"
if [[ "$linenum" -eq "$session" ]]
then
echo $line
break
fi
done`
if [[ "$name" != "" ]]
then
screen -d -r "$name"
else
echo " Could not reattach to '$session'"
fi
save and close it
type: chmod 755 screens
type: ./screens and you will see something like this
CURRENT SESSIONS
------------------------
1 7908.sob-clients
------------------------
Reattach to session:
Enter a 1 and hit <enter>
Ctrl-A then 0 will take you to a shell prompt within screen
Ctrl-A then 1 will take you to sob client 1
Ctrl-A then 2 will take you to sob client 2
Ctrl-A then 3 will take you to sob client 3
Ctrl-A then 4 will take you to sob client 4
Ctrl-A then d will drop you out of screen and take you back to the real shell prompt, leaving all your clients running, even if you log out. 
Next time you want to check on them, open a shell prompt, or even via ssh if you like, and
type ./screens to see what the sob cllients are doing...
More information about screen can be found every where with a google search
Here's one to get you started: http://www.rackaid.com/resources/lin.../using-screen/