I’d like to have control over the name a of a process that is forked from a Perl script. Ideally it would go something like this:
./forker.pl
| ...
|
| fork("forked.pl");
|\
| \
| `--------\
| \
forker.pl forked.pl
…as seen by by top or ps.
Is this possible?
If the OS permits it at all,