2020-07-04 00:19:03 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin:/usr/local/lib/python2.7/bin
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-10-26 14:23:12 -04:00
|
|
|
find . -name .DS_Store -print0 | xargs -0 git rm -f --ignore-unmatch
|
2020-07-04 00:19:03 -04:00
|
|
|
find . -name .DS_Store | xargs rm -rf
|
|
|
|
|
find . -type d -name "*.pyc" | xargs rm -rf
|