For more please visit : Perl Series
Array referencing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
@a = (1, 2, 3); # original array | |
$aRef = \@a; # reference to the array | |
print "a: @a\n"; # prints "a: 1 2 3" | |
print "a: @$aRef\n"; # exactly the same |
To Read and print the file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
open (FILEHANDLE, "file.txt"); | |
while(<FILEHANDLE>) | |
{ | |
print "$_\n"; | |
} |
To Print the 1st character of a file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
open (FILEHANDLE, "< new.pl") or die "oops: $!"; | |
@each = FILEHANDLE; | |
my $char = getc $each[0]; | |
print $char; | |
close(FILEHANDLE); |