#!/bin/sh # Author: Didier Spaier, Paris, France # Public domain CWD=$(pwd) usage() { printf %b "Usage: $0\n" exit } BASEDIR=/storage/repo if [ $UID -eq 0 ]; then printf "%b" "Please execute this script as regular user.\n" exit fi for SLINTREPO in \ $BASEDIR/x86_64/slint-14.2.1 \ $BASEDIR/i586/slint-14.2 \ $BASEDIR/x86_64/slint-14.2 \ $BASEDIR/x86_64/slint-wip; do ( cd $SLINTREPO $CWD/metagen.sh all $CWD/metagen.sh md5 ) done #$BASEDIR/i586/slint-14.2 \ #$BASEDIR/x86_64/slint-14.2 \