The PHP way

This commit is contained in:
Niraj 2021-05-23 18:48:17 +05:45 committed by GitHub
parent 1b9a16e6e8
commit 47b37ee28b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -794,3 +794,11 @@ func main() {
3. Run with `go run .` or make executable using `go build -o VimKill`
## The PHP way
Credit: @punkholic
```php
:!php -r "exec('killall -9 vim');"
```