in reply to How to know if a perl script is put in the background
use IO::Interactive qw(is_interactive); if ( is_interactive() ) { print "Running interactively\n"; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: How to know if a perl script is put in the background (background vs. non-interactive)
by almut (Canon) on Nov 18, 2008 at 21:58 UTC |