We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 995441c commit 02bc512Copy full SHA for 02bc512
README.md
@@ -19,6 +19,7 @@ Credit: @tomnomnom
19
:!kill -9 $(find /proc -name "cmdline" 2>/dev/null | while read procfile; do if grep -Pa '^vim\x00' "$procfile" &>/dev/null; then echo $procfile; fi; done | awk -F'/' '{print $3}' | sort -u)
20
```
21
22
+
23
## The ps-less way using status files
24
Credit: @hakluke
25
@@ -33,6 +34,10 @@ Credit: @kpumuk
33
34
:!grep -P "PPid:\t(\d+)" /proc/$$/status | cut -f2 | xargs kill -9
35
36
37
+## The first contact way
38
+Credit: @caseyjohnellis
39
+
40
41
## The lazy pythonic using shell way
42
Credit: @PozziSan
43
0 commit comments