5 lines
87 B
Bash
5 lines
87 B
Bash
# kill a process by id
|
|
alias k='kill'
|
|
|
|
# force kill a process by id
|
|
alias kf='kill -9'
|