![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Spliting file based on condition | Raamc | Shell Programming and Scripting | 2 | 05-15-2008 08:51 AM |
| sorting huge file | dhanamurthy | Shell Programming and Scripting | 3 | 05-13-2008 08:22 PM |
| compare huge file | salaathi | SUN Solaris | 1 | 02-09-2008 02:33 AM |
| How to extract data from a huge file? | srsahu75 | Shell Programming and Scripting | 5 | 01-18-2008 02:06 AM |
| Searching for gaps in huge (2.2G) log file? | deckard | Linux | 3 | 01-11-2006 11:09 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
spliting up a huge file
I have a file {filename} which contains 65000 records
I need to split into 6 smaller files roughly 11000 records each. Can someone advise me of the Unix command to do so ? Many thanks |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
split
Code:
split -l 11000 filename |
|
#3
|
|||
|
|||
|
Thanks again Glenn
|
|||
| Google The UNIX and Linux Forums |