#!/bin/sh

for script in add-*
do
    if [ $script = 'add-all' ]; then
        continue
    fi

    ./$script
done
