mirror of
https://github.com/DictXiong/dotfiles.git
synced 2024-11-24 11:56:59 +08:00
Dict Xiong
8782121dcc
* mass change. staged, not tested * still mass changed without test * bug fix * bug fix
12 lines
298 B
Bash
Executable File
12 lines
298 B
Bash
Executable File
#!/bin/bash
|
|
|
|
THIS_DIR=$( cd "$( dirname "${BASH_SOURCE[0]:-${(%):-%x}}" )" && pwd )
|
|
DOTFILES=${DOTFILES:-$( cd "$THIS_DIR/.." && pwd )}
|
|
source "$DOTFILES/tools/common.sh"
|
|
|
|
if [[ -z "$1" || "$1" =~ "-h|--help" ]]; then
|
|
fmt_info "usage: dogo <container>"
|
|
else
|
|
$SUDO docker exec -it $1 zsh
|
|
fi
|