#!/bin/bash
echo removing:
find . -path ./node_modules -prune -o \( -name \*~ -type f -print -exec rm {} \; \)
