D
Didier FRAISSE
i'm trying to convert this small ruby script into perl script
Reporting.rb
========
Dir.chdir('\\\Bureautique\Reporting France')
system( 'C:\Program Files\Microsoft Office\Office\Excel.exe "Reporting
France.xls"')
Dir.chdir('\\\Bureautique\Reporting Export')
system( 'C:\Program Files\Microsoft Office\Office\Excel.exe "Reporting
Export.xls"')
Reporting.pl
========
chdir('\\\Bureautique\Reporting France')
system( 'C:\Program Files\Microsoft Office\Office\Excel.exe "Reporting
France.xls"')
chdir('\\\Bureautique\Reporting Export')
system( 'C:\Program Files\Microsoft Office\Office\Excel.exe "Reporting
Export.xls"')
but it seems that UNC path are not welcome !!!
how can i do the same in perl
thanks
Didier
Reporting.rb
========
Dir.chdir('\\\Bureautique\Reporting France')
system( 'C:\Program Files\Microsoft Office\Office\Excel.exe "Reporting
France.xls"')
Dir.chdir('\\\Bureautique\Reporting Export')
system( 'C:\Program Files\Microsoft Office\Office\Excel.exe "Reporting
Export.xls"')
Reporting.pl
========
chdir('\\\Bureautique\Reporting France')
system( 'C:\Program Files\Microsoft Office\Office\Excel.exe "Reporting
France.xls"')
chdir('\\\Bureautique\Reporting Export')
system( 'C:\Program Files\Microsoft Office\Office\Excel.exe "Reporting
Export.xls"')
but it seems that UNC path are not welcome !!!
how can i do the same in perl
thanks
Didier