diff --git a/.bashrc b/.bashrc index bf07228..cdfdef4 100644 --- a/.bashrc +++ b/.bashrc @@ -91,6 +91,12 @@ function mkcd { cd "$1" } +# cd to dir + ll (ls -la) +function cdll { + cd "$1" + ls -la +} + calc() { echo "$@" | bc }