From owner-freebsd-questions Thu Apr 25 16:52:07 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id QAA21230 for questions-outgoing; Thu, 25 Apr 1996 16:52:07 -0700 (PDT) Received: from vent.pipex.net (vent.pipex.net [158.43.128.5]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id QAA21169 for ; Thu, 25 Apr 1996 16:52:02 -0700 (PDT) Received: from dial.pipex.com by vent.pipex.net (8.6.12/PIPEX simple 1.20) id AAA14415; Fri, 26 Apr 1996 00:51:07 +0100 Received: (from jraynard@localhost) by dial.pipex.com (8.6.12/8.6.12) id AAA02245; Fri, 26 Apr 1996 00:12:17 GMT Date: Fri, 26 Apr 1996 00:12:17 GMT From: James Raynard Message-Id: <199604260012.AAA02245@dial.pipex.com> To: jeff@stat.uconn.edu CC: questions@freebsd.org In-reply-to: <9604242020.AA20068@ruddles.stat.uconn.edu> (jeff@stat.uconn.edu) Subject: Re: Archiving Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >>>>> jeff@stat.uconn.edu (Jeffrey M. Metcalf) writes: > > Hi, > > I was wondering if there is a program available on FreeBSD that can > split a large binary file into smaller pieces which can be reassembled > at a later date. My only backup storage media right now are 1.44MB > floppies and I have a tar-gzipped file that cannot be repacked into > smaller pieces to fit on a floppy. Yes, something like $ split -b1440k filename filename. will split filename into 1.44M files called filename.aa, filename.ab, and so on. Cheers James