in reply to Re: Calling Software/Applications from Perl Script
in thread Calling Software/Applications from Perl Script
Thanks a lot i tried what you suggested but it says vi is not internal or external command , operable program or batch file.
#!/usr/bin/perl use strict; use warnings; my $test= 'C:\Users\Gxtech\Downloads\ostinato-bin-win32-0.5.1 (2)\osti +nato-0.5.1'; my @command = ('vi', $test) ; System(@command) == 0 or die "could not '@command':$";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Calling Software/Applications from Perl Script
by AnomalousMonk (Archbishop) on Jul 26, 2013 at 14:59 UTC | |
|
Re^3: Calling Software/Applications from Perl Script
by 2teez (Vicar) on Jul 26, 2013 at 15:03 UTC |