How to run Linux Command Using Perl?
Method 1:
@a=print readpipe( "ls -l *" );
print @a;
Method 2:
@a=print system( "ls -l *" ); print @a;
[There's More Than One Way To Do It]
Always A Blog To Get Confident in Coding
@a=print readpipe( "ls -l *" );
print @a;
@a=print system( "ls -l *" ); print @a;