#!/usr/local/bin/bash
#Load Screens for Connections... Up to 10 screens.
# 02/04/98 - Reformed user interface - more friendly=)
# 02/10/98 - Added Support for Active/Inactive Sites.
# 02/10/98 - Added telnet support.
# 02/10/98 - v2.1 if official.
set prompt="-[$user@loadscreen v2.1: "
SITEDIR="./digir0x"
ALLSITES=`ls -m $SITEDIR`
INACTIVE=`ls -m $SITEDIR/.inactive`
TELNETS=`ls -m $SITEDIR/.telnet`
screen -q -c .digiscrn
echo " --[LS v2.1 ]-------------------------  -----  --    - [(c) dv]   -"
echo "| Suggestions       : digivamp@mobsters.com"
echo "| Active Sites      : $ALLSITES"
echo "| Inactive Sites    : $INACTIVE"
echo "| Active Sites dir  : $SITEDIR"
echo "| Inactive Sites dir: $SITEDIR/.inactive"
echo "| Telnet Connections: $SITEDIR/.telnet"
echo "| Matched Telnets   : $TELNETS"
echo " ------------------------------   ---------  -----   -       - "


