exec "perl program2.pl" or die $!
Quote from perlfunc manpage:
The exec function executes a system command and never returns-- use system instead of exec if you want it to return. It fails and returns false only if the command does not exist and it is executed directly instead of via your...
I have a list I want to display, lined up in two columns. Something like this:
Item · · · · · · · · · · status
Item · · · · · · · · · · status
Really long item · status
Item · · · · · · · · · · status
More items · · · · · status
All I can think of is to make...