• 23Oct

    I wanted a place to put quick command that I use. I sometimes forget, and wanted a quick reference for myself.

    Remove backup files recursively (bash/sh):

    find ./ -name '*~' -exec rm '{}' \; -print

    Read more...