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