Skip to content

Instantly share code, notes, and snippets.

@Habbie
Created April 24, 2020 13:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Habbie/028b075ce6ac2e8a7b074788d7046f71 to your computer and use it in GitHub Desktop.
Save Habbie/028b075ce6ac2e8a7b074788d7046f71 to your computer and use it in GitHub Desktop.
peter@plato:~ $ perl -e 'print "A" x 32768'|perl -pne 's{\b([a-zA-Z])\1{3,}\b}{x}'|hexdump -C
00000000 78 |x|
00000001
peter@plato:~ $ perl -e 'print "A" x 32769'|perl -pne 's{\b([a-zA-Z])\1{3,}\b}{x}'|hexdump -C
00000000 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 41 |AAAAAAAAAAAAAAAA|
*
00008001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment