add function cdll to .bashrc

This commit is contained in:
Lexi / Zoe 2019-08-18 23:38:17 +02:00
parent a0c75c28b6
commit 3827a16d11
Signed by: binaryDiv
GPG Key ID: F8D4956E224DA232
1 changed files with 6 additions and 0 deletions

View File

@ -91,6 +91,12 @@ function mkcd {
cd "$1" cd "$1"
} }
# cd to dir + ll (ls -la)
function cdll {
cd "$1"
ls -la
}
calc() { calc() {
echo "$@" | bc echo "$@" | bc
} }