mirror of
https://gitlab.com/dabruh/dotfiles.git
synced 2025-03-12 02:38:11 +01:00
8 lines
148 B
Bash
Executable file
8 lines
148 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# kill-remote-sessions
|
|
#
|
|
# Kills *any* active or inactive 'kubectl exec' or 'ssh' sessions.
|
|
|
|
pkill -fe 'kubectl exec'
|
|
pkill -fe 'ssh '
|