#!/bin/sh

for WEBSITE in $(ls /web)
do
    test $WEBSITE != "lost+found" \
    && /usr/local/sbin/webuser refresh $WEBSITE
done