Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?



Walter Roberson wrote:


As you've already been told: Such a program doesn't exist, because it's absolutely trivial. You can even implement it with a one-line shell script on almost any platform.

Then you won't mind sharing your one-line shell script with poster3814.

May I presume Windows cmd Shell?

(for /f "delims=" %i in (dictionary.txt) do \
for /f "delims=" %j in (dictionary.txt) do \
for /f "delims=" %k in (dictionary.txt) do echo %i%j%k) >output.txt

Or Bash?

(for $i in [dictionary.txt]; do; \
for $j in [dictionary.txt]; do; \
for $k in [dictionary.txt]; do; echo -n $i$j$k; end; end; end;) >output.txt

Now, need even more evidence that this is totally trivial?
.



Relevant Pages

  • Re: Good Fowler article on ORM
    ... The only facts you presented in evidence were that your Android times were slower by some unspecified margin than the desktop times, and that the Android platform was inherently physically slower than the desktop. ... I suggest that the platform differences, to which I alluded in some detail in that response, account for the performance differences you observe, or could. ...
    (comp.lang.java.programmer)
  • Re: Bush Lied, Lied, Lied and then Lied Some More
    ... | Administration Pushed Notion of Banned Iraqi Weapons ... | Despite Evidence to Contrary ... But even as Bush spoke, ... So your platform, still, is bash Bush. ...
    (alt.politics.bush)
  • Re: Is any python like linux shell?
    ... I read a book and it teaches how to write shell script with bash, ... I want to get a linux shell which use python grammar. ... The mere act of beginning to write a shell script will tie you to that "language", even when you realize your task was much more complex than you had originally imagined. ...
    (comp.lang.python)
  • Re: which is the basic differences between the shells?
    ... I cannot say about the tcsh features. ... using FreeBSD as my primary OS instead of bash, ... I've never really tried using vi-mode editing in any shell, ... I needed shell compatibility when writing a shell script (which, for me, ...
    (freebsd-questions)
  • Re: pg_dumpall shell script in bash shell
    ... I am attempting to write a set of automated BASH Shell Scripts ... names of the databases to feed them into a shell script array it feeds ... # These are the variables for use with the backup. ...
    (comp.unix.programmer)