in reply to How to kill a process redirected to /dev/null

Does your process show up on the list made by this script?:

#! /usr/bin/perl use strict; use warnings; my $list = `ps -a`; print STDERR "$list";