repo.or.cz
/
oi-userland.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
p7zip: assorted fixes
[oi-userland.git]
/
components
/
openindiana
/
ca-certificates
/
files
/
list-nonasii.pl
blob
3f5ed2e094c4f70c5874936335973c67624b9697
1
#!/usr/bin/perl
2
#
3
# Script to list line with characters that are not in the ASCII class
4
#
5
6
while
(<>) {
7
if
(
/[[:^ascii:]]/
) {
8
print
;
9
}
10
}
11