#!/bin/bash TARGET="/local_testdata/test-destination" echo "Starte Blackhole auf $TARGET" while true; do find "$TARGET" -type f -mmin +0.5 -delete sleep 10 done