static void unix_killProcesses(L pids) { if (empty(pids)) ret; S s = joinWithSpaces(pids); print("Killing processes: " + s); backtick("kill " + s); }