in reply to Re: perl script inside a shell script
in thread perl script inside a shell script
Of course you can do anything in Perl that you can do in a shell script when you can use system. Like so:
#!/usr/bin/perl system('sh arbitraryshellscript');
</humor>
|
|---|