I am new to Perl. I am processing thousands of autosys job logs and printing the information in CSV file. First column captures Job Name, second: start date and Time, Third: End date and Time, and last fourth : Command (Command the Autosys job is running).
Command can have multiple commas in it, which is distorting output CSV file. I want entire command to be printed in column four.
I am unable to use Text::CSV, getting below error,
Can't locate Text/CSV.pm in @INC (@INC contains: E:/vendor_apps/Perl/lib E:/vendor_apps/Perl/site/lib .) at AutosysLogInfo.pl line 18.
BEGIN failed--compilation aborted at AutosysLogInfo.pl line 18.
Can anyone help me with this? Is there alternative way which can be done without using additional module.
can you help me with sample code?
Command can have multiple commas in it, which is distorting output CSV file. I want entire command to be printed in column four.
I am unable to use Text::CSV, getting below error,
Can't locate Text/CSV.pm in @INC (@INC contains: E:/vendor_apps/Perl/lib E:/vendor_apps/Perl/site/lib .) at AutosysLogInfo.pl line 18.
BEGIN failed--compilation aborted at AutosysLogInfo.pl line 18.
Can anyone help me with this? Is there alternative way which can be done without using additional module.
can you help me with sample code?