Guest User

Untitled

a guest
Mar 8th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #!/usr/bin/perl -w
  2. use utf8;
  3.  
  4. while(<>)
  5. {
  6. chomp;
  7. next if $_ eq "";
  8. #next if $_ =~ /Note/;
  9. my $count = 0;
  10. $count++ while(s/^[0-9]+[. ][ ]?//);
  11. $_ = "\t$_" while(--$count > 0);
  12. print $_,"\n";
  13. }
Add Comment
Please, Sign In to add comment