Last active
July 26, 2023 04:36
-
-
Save senthilmurukang/bdd8486d0e066635de95f4e4e7a085e7 to your computer and use it in GitHub Desktop.
shell script alias to kill vscode server (needed when the vscode client fails to connect to a running vscode server process)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias ck='ps -U $USER -o pid -o comm | grep -E "*node*" | sed -e 's/node$//' | xargs kill -9' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment