Mar 22, 2006 #1 Michael42 Programmer Joined Oct 8, 2001 Messages 1,454 Location 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 Joined Mar 24, 2002 Messages 1,268 Location US Code: cat myfile.gz* >myfile.gz Upvote 0 Downvote
Mar 23, 2006 Thread starter #3 Michael42 Programmer Joined Oct 8, 2001 Messages 1,454 Location US Thanks sir! Upvote 0 Downvote