#!/bin/sh for seq in $(find benchmarks -type f | tr '\n' ' '); do echo -n "$seq: " && echo $(cat $seq | ./sdiffengine) done