Running the split command without any options will split a file into 1 or more separate files containing up to 1000 lines each.
split file
This will create files named xaa, xab, xac, etc, each containing up to 1000 lines. As you can see, all of them are prefixed with the letter x by default. If ...