git @ Cat's Eye Technologies Cleandown / master tests / test.sh
master

Tree @master (Download .tar.gz)

test.sh @masterraw · history · blame

#!/bin/sh -e

# SPDX-FileCopyrightText: Chris Pressey, the creator of this work, has dedicated it to the public domain.
# For more information, please refer to <https://unlicense.org/>
# SPDX-License-Identifier: Unlicense

for F in clean_test_*.md; do
    echo "$F"
    cleandown -e .out.md "$F"
    diff -u "$F" "$F.out.md"
    rm -f "$F.out.md"
done