Posts by Natanael Weslley • 63 points
2 posts
-
3
votes2
answers65
viewsA: How to convert a txt to csv in perl?
The problem has been solved!! Follows solution script: #!/usr/bin/perl my $filename = "interfaces.txt"; my $interface; my $status; my $protocol; my $description; open(fh, $filename) or die "não…
-
3
votes2
answers65
viewsQ: How to convert a txt to csv in perl?
Hello, Little Boy. I am new to perl. I need to convert a txt file to csv. Follow the code I’ve managed so far. #!/usr/bin/perl my $filename = "interfaces.txt"; open(fh, $filename) or die "não…