Guest User

Untitled

a guest
Jun 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. #!/usr/bin/perl
  2. my @raws;
  3. open(VALUES, 'bla');
  4. while (<VALUES>) {
  5. chomp;
  6. push(@raws, split(/=/));
  7. }
  8. print @raws[21];
Add Comment
Please, Sign In to add comment