#!/bin/sh for i in `find . -regex '.*\._.*'`; do rm $i; echo "removing $i"; done
If you save that as "/home/$USER/bin/cleanup" and do a "chmod 777 /home/$USER/bin/cleanup" it will be available next time you open a terminal by just typing "cleanup".
2786 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)
#!/bin/sh for i in `find . -regex '.*\._.*'`; do rm $i; echo "removing $i"; done
You need to create an account or log in to post comments to this site.