From fa5bfaccd480998830bbd6a00813b9230035f5ad Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Wed, 21 Sep 2016 18:27:06 +0300 Subject: [PATCH] - Added cdtemp alias (cd to a temp directory). --- .bashrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.bashrc b/.bashrc index 9a02823..d4c029b 100644 --- a/.bashrc +++ b/.bashrc @@ -67,6 +67,7 @@ alias ecr-login='eval $(aws ecr get-login)' alias hostlocal='docker run --rm --privileged --net=host gliderlabs/hostlocal' alias apt-daily='sudo apt update && sudo apt dist-upgrade --download-only --yes && sudo apt autoclean' alias docker-build='docker build -t "$(basename $PWD)" ./' +alias cdtemp='cd $(mktemp -d)' deduce-aws-region () { export AWS_DEFAULT_REGION="$(curl --silent \ -- GitLab