Im new to the windows cmd (not powershell), how is an easy way to print out only the first 2-3 lines of each file (also some big files among it) in a folder? I found this so far, but it displays only the first two lines of one file, I cant get it working for all files in the folder.
for %x in (*.csv) do (more %x 2)