aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-05-14 07:04:29 -0400
committertdro <tdro@users.noreply.github.com>2020-05-14 07:04:29 -0400
commit83845b9eb22a16736ed6fb455fdd6e37877b1e1b (patch)
treed833c682373515e1da3669833c44cff6f65f767f /.bashrc
parenta316a210ee7682e8b5c1f4e7840ca3d905f5c5de (diff)
downloaddotfiles-83845b9eb22a16736ed6fb455fdd6e37877b1e1b.tar.gz
dotfiles-83845b9eb22a16736ed6fb455fdd6e37877b1e1b.tar.bz2
dotfiles-83845b9eb22a16736ed6fb455fdd6e37877b1e1b.zip
.bashrc: lxc-stop kill
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.bashrc b/.bashrc
index 7a74133..e3ec67b 100644
--- a/.bashrc
+++ b/.bashrc
@@ -103,7 +103,7 @@ alias lxc-ls='lxc-ls -f'
lxc-copy() { $(which lxc-copy) -n "$1" -N "$2"; }
lxc-restart() { $(which lxc-stop) -n "$1"; $(which lxc-start) -n "$1"; }
lxc-start() { for container in "$@"; do $(which lxc-start) -n "$container"; done }
-lxc-stop() { for container in "$@"; do $(which lxc-stop) -n "$container"; done }
+lxc-stop() { for container in "$@"; do $(which lxc-stop) -kn "$container"; done }
# docker aliases
alias pdf2htmlEX='docker run -ti --rm -v "$PWD":/pdf bwits/pdf2htmlex:1.0 pdf2htmlEX'