Welcome Guest [Log In] [Register]
Viewing Single Post From: Can Anyone Break This????
jdege
Member Avatar
Elite member
[ *  *  *  *  * ]
Revelation
Apr 13 2008, 10:28 AM
If we convert that dictionary into a more workable form, we've got a nice word list. Wouldn't be too hard I think. I'll have a look at it tonight.

It's exactly the sort of problem that awk was invented for, though everyone but us old farts seems to be using perl, these days.

Code:
 
/^[A-Z]/ {
 pattern = $1
 $1 = ""
}

{
 for (i=1; i<= NF; i++) {
  if ($i != "") print pattern, $i
 }
}


It's a ten minute problem, either way.
When cryptography is outlawed, bayl bhgynjf jvyy unir cevinpl.
Offline Profile Quote Post
Can Anyone Break This???? · Challenges