diff -urpN magnum-jumbo/doc/RULES magnum-jumbo2/doc/RULES --- magnum-jumbo/doc/RULES 2012-05-19 16:20:00.343750000 +0000 +++ magnum-jumbo2/doc/RULES 2012-05-19 20:07:04.531250000 +0000 @@ -134,6 +134,19 @@ which will append the string "yes/no". more efficient to use, say, "Az,yes/no," for the same effect. + Arbitrary characters commands. + +Any 8-bit character can be used, inside of a Ax"str", a $c or ^c +or within preprocessor $[c...] or ^[c...] settings. The method used +within john, is similar to emitting an arbitrary character within +the C language. This syntax is \xhh where hh is 2 hex characters. +So, Az"\x1b[2J" would append then ansi escape sequence to clear the +screen to the end of the current password. Or something like $\x10 +would append a new line character to the end of the word. These +escaped characters also work properly in all character class commands +(listed later). + + Length control commands.