Guest User

Untitled

a guest
Jun 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #!/usr/bin/perl
  2.  
  3. open F,"<", "dict.txt";
  4. open Ftmp,">","/tmp/dict.tmp";
  5.  
  6. @raw_data = <F>;
  7.  
  8. print Ftmp reverse(@raw_data);
  9.  
  10. close(F);
  11. close(Ftmp);
Add Comment
Please, Sign In to add comment