in reply to Re: Beginner question regarding file lists/output
in thread Beginner question regarding file lists/output

In the Windows shell, this would achieve the desired:

dir *index.ccr > indexlist.ccr

Or you could use pipes, and filter dir through find and then output to the file, like so:

dir | find "index.ccr" > indexlist.ccr

Chaining commands using pipes allows the Windows shell, even though severy crippled when compared with *nix shells, to perform moderatelly complex administrative tasks.