This website requires JavaScript.
Explore
Help
Sign in
rwx.work
/
sh
Watch
1
Star
0
Fork
You've already forked sh
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
Actions
ecb6a686f2
sh
/
shell
/
alias
/
kill.sh
13 lines
111 B
Bash
Raw
Normal View
History
Unescape
Escape
bash.d
2023-05-09 20:02:34 +00:00
# kill a process by id
k,kf
2024-11-16 14:40:17 +00:00
k
(
)
{
kill
\
"
${
@
}
"
}
bash.d
2023-05-09 20:02:34 +00:00
# force kill a process by id
k,kf
2024-11-16 14:40:17 +00:00
kf
(
)
{
kill
\
-9
\
"
${
@
}
"
}
Reference in a new issue
Copy permalink