Ask HN: Best things in your bash_profile/aliases? 8 years ago
Simple aliases for find and grep, that allow to just look for something without worrying about case sensitivity, escaping, etc.
function ff {
find . -iname \*$1\*
}
alias gr='ack -i'