• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

COPYINGH A D02-Feb-200817.6 KiB341281

ChangeLogH A D03-Oct-20081.7 KiB4837

MakefileH A D03-May-20221.3 KiB6431

READMEH A D03-Oct-20082.3 KiB7046

config.hH A D03-Oct-20082.4 KiB9953

func.cH A D02-Jul-20082.5 KiB13279

func.hH A D02-Jul-20081.1 KiB388

lxsplit.specH A D03-Oct-20081.3 KiB5539

main.cH A D03-Oct-20083.6 KiB162115

merge.cH A D02-Feb-20084.6 KiB219161

merge.hH A D02-Feb-20081 KiB344

mkuoff_t.cH A D02-Feb-20083.1 KiB11170

split.cH A D03-Oct-20084.3 KiB188132

split.hH A D02-Feb-20081.1 KiB344

README

1
2lxSplit for Unix (Linux, BSD, ...) version 0.2.4
3
4http://lxsplit.sourceforge.net/
5http://sourceforge.net/projects/lxsplit/
6
7------------------------------------------------------------------------
8
9This utility is used to split up huge files into smaller pieces without
10compression.  It can be used to join the splitted pieces back into the
11original file.  LXSplit is fully compatible with HJSplit which is a free
12tool available for other operating systems (see http://www.freebyte.com)
13
14Installation is easy, just run:
15 make
16 make install
17
18The program will be installed as "lxsplit" in /usr/local/bin by default.
19If you wish to install it elsewhere, edit the Makefile, and change the
20'INSTALL_PATH'.
21
22LXSplit splits and merges files with the -s and -j flags respectively.
23Starting with version 0.2.1, LXSplit can handle large files (>= 4 GB)
24both when splitting and joining.
25
26Example:
27To split a big file into smaller pieces of 15 MB each, run the following
28command:
29
30 > lxsplit -s hugefile.bin 15M
31
32Output size can be given in (M)egabytes, (k)ilobytes and (b)ytes.
33
34To merge (join) the already split pieces into the original big file, run
35this command:
36
37 > lxsplit -j smallfiles.bin.001
38
39All resulting files (from either splitting or joining) will be placed in
40the current directory.
41
42------------------------------------------------------------------------
43
44If there are any problems with this software, or if you have suggestions
45or patches, visit the project page at our sourceforge.net address above:
46use the forums and the tracker system to get help and / or to make a bug
47report or submit a patch.
48
49------------------------------------------------------------------------
50
51LICENSE:  This program is free software; you can redistribute it and/or
52modify it under the terms of the GNU General Public License as published
53by the Free Software Foundation; either version 2 of the License, or (at
54your option) any later version.  See the GNU General Public License for
55more details.
56
57------------------------------------------------------------------------
58
59Original author:
60Richard Stellingwerff <remenic@gmail.com>
61homepage:  http://www.stellingwerff.com/
62
63Maintained by:
64O. Sezer <sezero@users.sourceforge.net>
65
66------------------------------------------------------------------------
67
68$Id: README,v 1.12 2008/10/03 12:09:04 sezero Exp $
69
70