# kill a process by id
k() {
	kill \
		"${@}"
}

# force kill a process by id
kf() {
	kill \
		-9 \
		"${@}"
}