Advertisement
Guest User

Untitled

a guest
May 28th, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.32 KB | None | 0 0
  1. #!/usr/bin/env perl
  2. # $Id$
  3.  
  4. use 5.10.0; use strict; use warnings;
  5. local $/; $_ = <>;
  6. s,\004([2378?<>:]/|[cegi]),,sg;             # Irssi: ^D
  7. #s,\003((1[0-5]|0?[0-9])(\,(1[0-5]|0?[0-9]))?|),,sg;    # mIRC: ^C
  8. #s,\002|\x0f|\x1f,,sg;                  # mIRC: ^B, ^O, ^_
  9. s,\007,,sg;                     # BEL
  10. print;
  11.  
  12. # vim:ts=8 sw=8 tw=80 noexpandtab foldmethod=marker
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement