4 lines
112 B
Bash
Executable File
4 lines
112 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
pgrep ".*" -l | dmenu -p "Choose process: " | sed "s/\\([0-9]*\\).*/\1/g" | xargs kill -9 $1
|