1#!/bin/sh 2 3println "+ zstd -r * --output-dir-mirror=\"\"" 4zstd -r * --output-dir-mirror="" && die "Should not allow empty output dir!" 5println "+ zstd -r * --output-dir-flat=\"\"" 6zstd -r * --output-dir-flat="" && die "Should not allow empty output dir!" 7exit 0 8