#!/bin/bash for KIND in 4 8 16; do for IMPL in naiv bett dot mat bett2; do ./build/mull $KIND $IMPL > res/${IMPL}_$KIND done done