I didn't know this command...great
thx ! ....maybe I should read out the whole man pages - very useful
http://docs.hp.com/cgi-bin/fsearch/f...0041109-044841
split reads file and writes it in pieces (default 1000 lines) onto a set of output files. The name of the first output file is name with aa appended, and so on lexicographically, up to zz (only ASCII letters are used, a maximum of 676 files). If no output name is given, x is the default.
If no input file is given, or if - is given instead, the standard input file is used.
Options
split recognizes the following command-line options and arguments: -l line_count
The input file is split into pieces line_count lines in size.
-a suffix_length
suffix_length letters are used to form the suffix of the output filenames. This option allows creation of more than 676 output files. The output file names created cannot exceed the maximum file name length allowed in the directory containing the files.
-b n The input file is split into pieces n bytes in size.
-b nk The input file is split into pieces n × 1024 bytes in size. No space separates the n from the k.
-b nm The input file is split into pieces n × 1048576 bytes in size. No space separates the n from the m.
-n The input file is split into pieces n lines in size. This option is obsolescent and is equivalent to using the -l line_count option.
...I think that is the solution. until soon...