#!/bin/sh

for i in $(seq 1 100);
do
  cat controls/first_key > first_key.txt
  cat controls/second_key > second_key.txt
  sleep 1
done
