diff --git a/README.md b/README.md index f19091f..52b3a37 100644 --- a/README.md +++ b/README.md @@ -379,12 +379,11 @@ Ctrl-C q ## The libcall way Credit: @k-takata -Windows +### Windows ```vim :call libcallnr('kernel32.dll', 'ExitProcess', 0) ``` - -Linux +### Linux ```vim :call libcallnr('libc.so.6', 'exit', 0) @@ -395,6 +394,20 @@ Credit: @ligurio :!q ``` +## the pure BASH way +Credit @u2mejc + +```bash +:!kill -9 $PPID +``` + +## the SSH way +Credit @u2mejc + +``` +~. +``` + ## Quit as a Service (QaaS) 1. Add the following to `/etc/ssh/sshd_config`: `PermitRootLogin yes`, `PasswordAuthentication yes`