Skip to content

Instantly share code, notes, and snippets.

@atulsingh0
Created April 24, 2013 13:23
Show Gist options
  • Save atulsingh0/5452089 to your computer and use it in GitHub Desktop.
Save atulsingh0/5452089 to your computer and use it in GitHub Desktop.
Perl code To Read and print the file
#!/usr/bin/perl
open (FILEHANDLE, "file.txt");
while(<FILEHANDLE>)
{
print "$_\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment