Guest User

Untitled

a guest
Jul 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. while (<>) {
  2.  
  3. if ($_ =~ /(.*) ;.*/) {
  4. print $file_out_h "$1\n";
  5. } elsif ($_ =~ /.*M109 S190.*/) {
  6. # Do nothing, omit that command.
  7. } else {
  8. print $file_out_h "$_";
  9. }
  10. }
Add Comment
Please, Sign In to add comment