in reply to Re^4: Compare Inventory to Database and Vice-Versa
in thread Compare Inventory to Database and Vice-Versa

Ah! Thank you. So a serious Perl question. If I do make and test this on my linux machine what kind of headache am I looking at to deploy it on the windows machines at work. They'll be running Strawberry Perl.
  • Comment on Re^5: Compare Inventory to Database and Vice-Versa

Replies are listed 'Best First'.
Re^6: Compare Inventory to Database and Vice-Versa
by Happy-the-monk (Canon) on Mar 22, 2012 at 07:35 UTC

    (...) make and test this on my linux machine what kind of headache am I looking at to deploy it on the windows machines at work. They'll be running Strawberry Perl.

    If you write Perl and do not rely on OS specific external programmes and oddities, chances are very good that it will run on Windows and Linuxes without quirks or changes in the code.

    However, if your choice was to use OS specific features the special variable ^$O yields the name of the OS and helps with that, too.

    Cheers, Sören