Split large file into smaller file

hi Guys

i need some help here..

i have a file which has > 800,000 lines in it. I need to split this file into smaller files with 25000 lines each.

please help

thanks

Try

split -l 25000 file

see man split if you wish to play with how the spitted files-name would be.