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