Mar 22, 2006 #1 Michael42 Programmer Oct 8, 2001 1,454 US Hello, On a Solaris 8 system I am using split to split a file. I have heard you use cat to re-assemble it. So if I split my file using (I hope this is correct): Code: split -b 345m myfile.gz How would I use cat to re-assemble it? Thanks, Michael42
Hello, On a Solaris 8 system I am using split to split a file. I have heard you use cat to re-assemble it. So if I split my file using (I hope this is correct): Code: split -b 345m myfile.gz How would I use cat to re-assemble it? Thanks, Michael42
Mar 22, 2006 1 #2 chipperMDW Programmer Mar 24, 2002 1,268 US Code: cat myfile.gz* >myfile.gz Upvote 0 Downvote
Mar 23, 2006 Thread starter #3 Michael42 Programmer Oct 8, 2001 1,454 US Thanks sir! Upvote 0 Downvote