Mega Code Archive

 
Categories / Perl / System Functions
 

Using system to call osshell function

#!/usr/bin/perl -w use strict; my $error_status = system 'date'; print "system() returned: $error_status\n";