#!/bin/bash
cut -b 8-77 text | cut -b 1-$3 > .x
for prog in $1.t
do
     ./$prog -e$2 -k $4 text < .x
done

