On Fri, Nov 30, 2001 at 05:32:03PM +0530, Praveen Kannan wrote: > I had splitted a couple of files using split, how do i > join the splitted file ??? > ---end quoted text--- -- : ####[ Linux One Stanza Tip (LOST) ]########################### Sub : Lesser used commands (split) LOST #168
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
