Skip to content

Instantly share code, notes, and snippets.

@cngkaygusuz
Last active May 20, 2016 06:46
Show Gist options
  • Save cngkaygusuz/e2852dbeb34474b2334c0c1eb349c061 to your computer and use it in GitHub Desktop.
Save cngkaygusuz/e2852dbeb34474b2334c0c1eb349c061 to your computer and use it in GitHub Desktop.
Extra helpers for bashrc
function cd {
builtin cd $1
ls
}
alias cb="cd /base"
# Docker
function dntr {
docker exec -ti $1 bash
}
function drun {
docker run -ti $1 bash
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment