Re: Test

2018-11-04 Thread SATYABRATA KARAN
Hi Shravan, Please send the complex hash here, so we can tell you exactly how to substitute it. Regards, Satya

Read a huge text file in perl

2018-05-24 Thread SATYABRATA KARAN
Hello, Does anyone guide me how to handle a huge file (>50GB) in perl? I tried open method this way, but it's hanging the terminal. I think that is out of memory error internally. open my $FILE, "<", "Log_file.txt"; while (<$FILE>) { chomp; some task; ... } close $FILE; Thanks, Satya