I have been studying programming perl. There I have come across a code something as below:
Can u please tell me what is FILE there?
cheers,
pavan.
Code:
while (<FILE>) {
print if /http:/;
print if /ftp:/;
print if /mailto:/;
# What next?
}
cheers,
pavan.
Comment