in reply to How to kill a process redirected to /dev/null
#! /usr/bin/perl use strict; use warnings; my $list = `ps -a`; print STDERR "$list"; [download]