#!/bin/bash

javac RSA.java

for (( i=200; "$i" < 4000; i*=5 ))
do
head -c $i test.1 > temp.tmp
java RSA <  temp.tmp
done
 