#!/usr/bin/env bash set -e file="$1" shift for attachment in "$@"; do mkvpropedit --attachment-mime-type font/sfnt --add-attachment "$attachment" "$file" done