From 144ffdf1c47f401638e0f3459bdfe9e0d614bd44 Mon Sep 17 00:00:00 2001 From: Jaewook Lee <11328376+jaewooklee93@users.noreply.github.com> Date: Fri, 9 Aug 2024 09:25:48 -0400 Subject: [PATCH] bashrc: add status --- linux-bash/bash_aliases.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/linux-bash/bash_aliases.sh b/linux-bash/bash_aliases.sh index a1bdf89..eed0aad 100644 --- a/linux-bash/bash_aliases.sh +++ b/linux-bash/bash_aliases.sh @@ -1,7 +1,7 @@ export RC="~/.bash_aliases" alias rc="vi $RC && tail $RC && source $HOME/.${SHELL##*/}rc" -alias l="ls -al --color=auto" +alias l="ls -l --color=auto" alias ls="ls -al --color=auto" alias ns="watch -n 0.1 nvidia-smi" alias log="docker compose logs -f" # compose V2 @@ -9,8 +9,6 @@ alias i="sudo apt-get install -y" alias debian="docker run -it --rm --gpus all python bash" alias download="huggingface-cli download" alias journal="sudo journalctl -u" -alias bsah="bash" # common typing error -alias pyhton="python" # common typing error alias make="make -j" export GGML_CUDA=1 @@ -25,6 +23,11 @@ alias dpkg="sudo dpkg" alias systemctl="sudo systemctl" alias service="sudo service" +alias bsah="bash" # common typing error +alias pyhton="python" # common typing error +alias stauts="status" +alias stuats="status" + dash() { sudo docker run -it --rm "$1" bash; } alias nuc="ssh 192.168.12.2" alias mac="ssh jaewooklee@192.168.12.45"