Ricerca di caratteri non stampabili. TLDR; Sintesi
- cerca caratteri di controllo E Unicode esteso
- impostazioni locali, ad es.
LC_ALL=C
necessarie per fare in modo che grep faccia ciò che ci si potrebbe aspettare con un Unicode esteso
Quindi i cercatori di caratteri non ascii preferiti:
$ perl -ne 'print "$. $_" if m/[\x00-\x08\x0E-\x1F\x80-\xFF]/' notes_unicode_emoji_test
come nella risposta migliore, il grep inverso:
$ grep --color='auto' -P -n "[^\x00-\x7F]" notes_unicode_emoji_test
come nella risposta migliore ma CON LC_ALL=C
:
$ LC_ALL=C grep --color='auto' -P -n "[\x80-\xFF]" notes_unicode_emoji_test
. . Di Più . . dettagli lancinanti su questo:. . .
Concordo con Harvey sopra seppellito nei commenti, è spesso più utile cercare caratteri non stampabili O è facile pensare non ASCII quando si dovrebbe davvero pensare non stampabile. Harvey suggerisce "usa questo:" [^\n -~]
". Aggiungi \ r per i file di testo DOS. Ciò si traduce in" [^\x0A\x020-\x07E]
"e aggiungi \ x0D per CR"
Inoltre, aggiungere -c (mostra il conteggio dei modelli abbinati) a grep è utile quando si cercano caratteri non stampabili poiché le stringhe abbinate possono rovinare il terminale.
Ho trovato che aggiungere l'intervallo 0-8 e 0x0e-0x1f (all'intervallo 0x80-0xff) è un modello utile. Ciò esclude TAB, CR e LF e uno o due caratteri stampabili non comuni. Quindi IMHO un modello grep abbastanza utile (anche se grezzo) è QUESTO:
grep -c -P -n "[\x00-\x08\x0E-\x1F\x80-\xFF]" *
REALMENTE, generalmente dovrai fare questo:
LC_ALL=C grep -c -P -n "[\x00-\x08\x0E-\x1F\x80-\xFF]" *
abbattersi:
LC_ALL=C - set locale to C, otherwise many extended chars will not match (even though they look like they are encoded > 0x80)
\x00-\x08 - non-printable control chars 0 - 7 decimal
\x0E-\x1F - more non-printable control chars 14 - 31 decimal
\x80-1xFF - non-printable chars > 128 decimal
-c - print count of matching lines instead of lines
-P - perl style regexps
Instead of -c you may prefer to use -n (and optionally -b) or -l
-n, --line-number
-b, --byte-offset
-l, --files-with-matches
Ad esempio, un esempio pratico di utilizzo trova per grep tutti i file nella directory corrente:
LC_ALL=C find . -type f -exec grep -c -P -n "[\x00-\x08\x0E-\x1F\x80-\xFF]" {} +
Potresti voler regolare il grep a volte. ad es. carattere BS (0x08 - backspace) utilizzato in alcuni file stampabili o per escludere VT (0x0B - scheda verticale). I caratteri BEL (0x07) e ESC (0x1B) possono anche essere considerati stampabili in alcuni casi.
Non-Printable ASCII Chars
** marks PRINTABLE but CONTROL chars that is useful to exclude sometimes
Dec Hex Ctrl Char description Dec Hex Ctrl Char description
0 00 ^@ NULL 16 10 ^P DATA LINK ESCAPE (DLE)
1 01 ^A START OF HEADING (SOH) 17 11 ^Q DEVICE CONTROL 1 (DC1)
2 02 ^B START OF TEXT (STX) 18 12 ^R DEVICE CONTROL 2 (DC2)
3 03 ^C END OF TEXT (ETX) 19 13 ^S DEVICE CONTROL 3 (DC3)
4 04 ^D END OF TRANSMISSION (EOT) 20 14 ^T DEVICE CONTROL 4 (DC4)
5 05 ^E END OF QUERY (ENQ) 21 15 ^U NEGATIVE ACKNOWLEDGEMENT (NAK)
6 06 ^F ACKNOWLEDGE (ACK) 22 16 ^V SYNCHRONIZE (SYN)
7 07 ^G BEEP (BEL) 23 17 ^W END OF TRANSMISSION BLOCK (ETB)
8 08 ^H BACKSPACE (BS)** 24 18 ^X CANCEL (CAN)
9 09 ^I HORIZONTAL TAB (HT)** 25 19 ^Y END OF MEDIUM (EM)
10 0A ^J LINE FEED (LF)** 26 1A ^Z SUBSTITUTE (SUB)
11 0B ^K VERTICAL TAB (VT)** 27 1B ^[ ESCAPE (ESC)
12 0C ^L FF (FORM FEED)** 28 1C ^\ FILE SEPARATOR (FS) RIGHT ARROW
13 0D ^M CR (CARRIAGE RETURN)** 29 1D ^] GROUP SEPARATOR (GS) LEFT ARROW
14 0E ^N SO (SHIFT OUT) 30 1E ^^ RECORD SEPARATOR (RS) UP ARROW
15 0F ^O SI (SHIFT IN) 31 1F ^_ UNIT SEPARATOR (US) DOWN ARROW
AGGIORNAMENTO: ho dovuto rivisitare questo di recente. E, YYMV a seconda delle impostazioni del terminale / previsioni meteorologiche solari MA. . Ho notato che grep non stava trovando molti caratteri Unicode o estesi. Anche se intuitivamente dovrebbero corrispondere all'intervallo da 0x80 a 0xff, i caratteri unicode a 3 e 4 byte non sono stati abbinati. ??? Qualcuno può spiegare questo? SÌ. @frabjous ha chiesto e @calandoa ha spiegato che LC_ALL=C
dovrebbe essere usato per impostare le impostazioni locali per il comando per far corrispondere grep.
ad es. il mio locale LC_ALL=
vuoto
$ locale
LANG=en_IE.UTF-8
LC_CTYPE="en_IE.UTF-8"
.
.
LC_ALL=
grep con LC_ALL=
vuoti corrisponde a caratteri codificati a 2 byte ma non a 3 e 4 byte codificati:
$ grep -P -n "[\x00-\x08\x0E-\x1F\x80-\xFF]" notes_unicode_emoji_test
5:© copyright c2a9
7:call underscore c2a0
9:CTRL
31:5 © copyright
32:7 call underscore
grep with LC_ALL=C
sembra corrispondere a tutti i personaggi estesi che vorresti:
$ LC_ALL=C grep --color='auto' -P -n "[\x80-\xFF]" notes_unicode_emoji_test
1:���� unicode dashes e28090
3:��� Heart With Arrow Emoji - Emojipedia == UTF8? f09f9298
5:� copyright c2a9
7:call� underscore c2a0
11:LIVE��E! ���������� ���� ���������� ���� �� �� ���� ���� YEOW, mix of japanese and chars from other e38182 e38184 . . e0a487
29:1 ���� unicode dashes
30:3 ��� Heart With Arrow Emoji - Emojipedia == UTF8 e28090
31:5 � copyright
32:7 call� underscore
33:11 LIVE��E! ���������� ���� ���������� ���� �� �� ���� ���� YEOW, mix of japanese and chars from other
34:52 LIVE��E! ���������� ���� ���������� ���� �� �� ���� ���� YEOW, mix of japanese and chars from other
81:LIVE��E! ���������� ���� ���������� ���� �� �� ���� ���� YEOW, mix of japanese and chars from other
QUESTA corrispondenza del perl (parzialmente trovata altrove su StackOverflow) OPPURE il grep inverso nella risposta principale sembra trovare TUTTI i caratteri ~ bizzarri ~ e ~ meravigliosi "non ascii" senza impostare le impostazioni locali:
$ grep --color='auto' -P -n "[^\x00-\x7F]" notes_unicode_emoji_test
$ perl -ne 'print "$. $_" if m/[\x00-\x08\x0E-\x1F\x80-\xFF]/' notes_unicode_emoji_test
1 ‐‐ unicode dashes e28090
3 💘 Heart With Arrow Emoji - Emojipedia == UTF8? f09f9298
5 © copyright c2a9
7 call underscore c2a0
9 CTRL-H CHARS URK URK URK
11 LIVE‐E! あいうえお かが アイウエオ カガ ᚊ ᚋ ซฌ आइ YEOW, mix of japanese and chars from other e38182 e38184 . . e0a487
29 1 ‐‐ unicode dashes
30 3 💘 Heart With Arrow Emoji - Emojipedia == UTF8 e28090
31 5 © copyright
32 7 call underscore
33 11 LIVE‐E! あいうえお かが アイウエオ カガ ᚊ ᚋ ซฌ आइ YEOW, mix of japanese and chars from other
34 52 LIVE‐E! あいうえお かが アイウエオ カガ ᚊ ᚋ ซฌ आइ YEOW, mix of japanese and chars from other
73 LIVE‐E! あいうえお かが アイウエオ カガ ᚊ ᚋ ซฌ आइ YEOW, mix of japanese and chars from other
Quindi i cercatori di caratteri non ascii preferiti:
$ perl -ne 'print "$. $_" if m/[\x00-\x08\x0E-\x1F\x80-\xFF]/' notes_unicode_emoji_test
come nella risposta migliore, il grep inverso:
$ grep --color='auto' -P -n "[^\x00-\x7F]" notes_unicode_emoji_test
come nella risposta migliore ma CON LC_ALL=C
:
$ LC_ALL=C grep --color='auto' -P -n "[\x80-\xFF]" notes_unicode_emoji_test