Re: Perl windows to linux conversion



Master wrote:
i want to convert my windows perl script code to linux.

If your perl script was properly written, and does not use any Windows-specific modules, simply converting from Windows line endings ("\r\n") to Unix line endings ("\n") and adjusting the shebang line should be sufficient. -Joe .