I want to do exactly what unix "cat" does, but on my PC. Is there a simple equivalent command for the Windows command line?
Specifically I want to create a file from all the files of a given type in a folder
In Unix:
cat *fna >all_fna_files.fna
(which joins all the ".fna" text files into one big text file)
cat file.txt– Kellen Stuart Oct 05 '16 at 18:12echobuilt-in. For PowerShell there is theWrite-Outputcmdlet (which also happens to be aliased byecho). – Sean Letendre Jan 04 '21 at 21:14