#!/bin/bash
for f in `grep -l -r -i  --include=*.py PEP8 ..`; do python pep8.py $f; done
