Re: i need help

[email protected] (Bob Proulx) Sun, 16 Mar 2003 10:08:12 -0700
Newsgroups gmane.comp.gnu.textutils.bugs
Message-ID <[email protected]>
bsr  krishna wrote:
> Dear [email protected]         ,
> 
> I am using split command. I need a help to you. This is the 
> problem i taked a file and splited three breakes now how can i 
> unsplit, what is the  command .

The 'split' program unless told otherwise will split into files named
with a PREFIX ('x' by default) followed by a group of letters 'aa',
'ab', and so on, such that concatenating the output files in sorted
order by file name in an ASCII locale produces the original input
file.  (If more than 676 output files are required, 'split' uses
'zaa', 'zab', etc.)

Try:

  cat x* > file

Bob