3 lines
66 B
Plaintext
3 lines
66 B
Plaintext
|
#!/bin/bash
|
||
|
ps aux | grep "$@" | awk '{print $2}' | xargs kill -9
|