Last Updated: February 25, 2016
·
606
· ellisonleao

Remove pyc and swp files recursively

This is a simple script to clean up your project folder from pyc and swp files.

#!/bin/bash
rm -rfv `find ./ | egrep -i "(pyc|.swp|˜)$"`
echo "Cleaned!"