#!/bin/bash

for x in ./patch_lists/patch.*
do
  fileno=${x##*.}
  echo "*********** PATCHING $fileno *************"
  ./patchit $fileno
done
