Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/usr/share/doc/perl-IO-Interactive/examples/
Upload File :
Current File : //proc/thread-self/root/usr/share/doc/perl-IO-Interactive/examples/interactive.pl

#!/usr/bin/perl -w

use IO::Interactive qw(is_interactive);

if( is_interactive() ) 
	{
	print "interactive\n\n";
	}
else 
	{
	print "NOT interactive\n\n";
	}