#! /bin/bash # sets the title of all mkv videos to the filename without extension for f in *.mkv; do t=${f%.mkv} mkvpropedit --set title="$t" "$f" done