This website requires JavaScript.
Explore
Help
Sign In
ivistang
/
biyelunwen
Watch
1
Star
0
Fork
You've already forked biyelunwen
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
master
biyelunwen
/
99.scripts
/
trinity_utils
/
util
/
misc
/
remove_cntrl_chars.pl
9 lines
105 B
Perl
Raw
Permalink
Blame
History
#!/usr/bin/env perl
use
strict
;
while
(
<STDIN>
)
{
tr
/\t\n\000-\037\177-\377/
\
t
\
n
/
d
;
print
;
}
Reference in New Issue
View Git Blame
Copy Permalink