summaryrefslogtreecommitdiffstats
path: root/.bin/dot-clean
blob: 5b326ea7bc67919b9941b140ce57dd3d0f327db1 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh

clean_files="*.core"

for file in ${clean_files}; do
	find "${HOME}" -maxdepth 2 -iname "*.core" -exec rm {} \;
done
remember that computers suck.