Hi Monks,
I have a file from which I need to fetch the name using the id of the account; the file will be huge in size, maybe in millions so will the following code have issues?
perl -ne '{ open(FILE,"/tmp/Config1"); print grep { /9344151299/i } <FILE>; close<FILE>; }'
Thanks,