|
Posted by Walter Roberson on May 3, 2007, 7:53 pm
If you were Registered and logged in, you could reply and use other advanced thread options
>>> 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?
Your programs do not appear to meet the user requirements that
the total after concatenation be 6 letters or less. It also does
not meet the requirement that two or three words be concatenated.
|