zshrc: cool new functions

Signed-off-by: Naman Sood <naman.sood@data.world>
This commit is contained in:
Naman Sood 2022-07-15 10:23:41 -05:00
parent fc2b3d4239
commit 6c0cb97d19

8
zshrc
View file

@ -110,3 +110,11 @@ if [ -z "$SSH_AUTH_SOCK" ] ; then
eval `ssh-agent -s`
grep -slR PRIVATE ~/.ssh/ | xargs ssh-add
fi
exp() {
cd "$@" && ls
}
cdmk() {
mkdir -p "$@" && cd "$@"
}