Skip to content

Instantly share code, notes, and snippets.

@senthilmurukang
Last active July 26, 2023 04:36
Show Gist options
  • Save senthilmurukang/bdd8486d0e066635de95f4e4e7a085e7 to your computer and use it in GitHub Desktop.
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)
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