#!/bin/sh
#
# Go through all the files in a directory, and then decide to artifact them.

for each in *
    do
    cat $each
    echo "-------"
    echo "Enter number of BBS cited or leave blank."
    read BOB
    if [ ! "$BOB" = "" ]
       then
    artifact "$BOB" "$each"
    fi
    done
     
