#!/bin/bash

if [ "$1" ==  "--help" ]; then
	echo "packages with config files with a leading slash (should be removed)"
	exit 1
fi

find ../source -type f -name FrugalBuild -print0 | xargs -0 -n 500 -P 16 grep -l '^backup=(/' \
        |sed 's|.*/\([^/]*\)/FrugalBuild.*|\1|'|sort -u
