Created
November 3, 2016 21:36
-
-
Save hectorgool/64c76c2b42d8a5efd6687e32f51a8efa to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| system("clear"); | |
| open( F, "id_attachment.txt" ) || die "Error al abrir archivo"; | |
| @base = <F>; | |
| $contador = 0; | |
| foreach ( @base ) { | |
| @campos = split(/;/, $_); | |
| $id = $campos[0]; | |
| $attachment = $campos[1]; | |
| print "$attachment"; | |
| } | |
| close F; | |
| print "\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment