#!/bin/bash

alias ll='ls -la'

alias grep="$(which grep) --color=auto"

# Helper to make and then enter a new directory
mkcd() {
    mkdir "$1" && cd "$1"
}
