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