#!/usr/bin/env bash # SPDX-FileCopyrightText: 2020-2021 Simon Bruder # # SPDX-License-Identifier: CC0-1.0 set -e file="$1" shift for attachment in "$@"; do mkvpropedit --attachment-mime-type font/sfnt --add-attachment "$attachment" "$file" done