On Wed, Oct 31, 2001 at 12:46:17AM +0530, Namit Bhalla wrote: > I have splitted a large file into smaller fragments using > the 'split' utility. > How do I merge the pieces back into the original file ? > 'split' man page does not mention joining of files. > ---end quoted text---
See LOST #169 below. Bish -- : ####[ Linux One Stanza Tip (LOST) ]########################### Sub : Lesser used commands (split) LOST #169 For breaking large files to small chunks, there is already an utility called "split". see man for usage. It breaks a large file into smaller userdefined chunks with the names xaa, xab, xac ... To rejoin them, do: '$cat x* > filename' ####<[EMAIL PROTECTED]>#################################### : _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
