Advertisement
Guest User

stripcat.pl

a guest
Feb 19th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.09 KB | None | 0 0
  1. #!/usr/bin/perl
  2. use strict;
  3. use warnings;
  4.  
  5. while (<>) {
  6.   s/\e\[[d;]*m//g;
  7.   print;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement