From 6c5fcc5103a9fe3a724f7031275dcb5edf65ba9f Mon Sep 17 00:00:00 2001 From: Jaewook Lee <11328376+jaewooklee93@users.noreply.github.com> Date: Sun, 1 Sep 2024 14:45:51 +0900 Subject: [PATCH] bashrc: add pkill --- linux-bash/bash_aliases.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/linux-bash/bash_aliases.sh b/linux-bash/bash_aliases.sh index 9db8fc9..bceb2fc 100644 --- a/linux-bash/bash_aliases.sh +++ b/linux-bash/bash_aliases.sh @@ -6,6 +6,7 @@ alias prune="docker system prune -f" alias rc="vi ~/.bash_aliases && tail ~/.bash_aliases && source ~/.bash_aliases" alias up="down && docker compose up --remove-orphans" alias down="docker compose down" +pkill() { pkill -f "$@" ; ps ux ; } inspect() { docker image inspect "$@" | jq ; } alias d="docker" alias c="docker compose"