Skip to content

Releases: AOx0/csv-split

v0.1.2

13 Jan 04:11
638692f

Choose a tag to compare

Changes:

  • Multi-thread approach
  • Slightly improved run times
  • Cleaned code
  • Dependencies update
  • Migrated to Tokio

v0.0.9

04 Jan 12:17
17d1d1f

Choose a tag to compare

Changes:

  • Updated clap version from 3.0.0-rc.7 to 3.0.1

v0.0.8

19 Dec 02:49
d4ca87c

Choose a tag to compare

spcsv 0.0.8

v0.0.7

19 Dec 02:00
f5edc27

Choose a tag to compare

Little changes on strings and unused/unimplemented features.
Most changes are within the justfile

v0.0.4

18 Dec 05:39
bd3f81a

Choose a tag to compare

Stable version.

TODO:

  • Flag to write remaining rows to last file instead of creating one
  • Fix unit tests, they suck right now
  • Try multi-thread again, maybe

Help:

spcsv 0.0.4
Split a lage csv file into multiple files

USAGE:
    spcsv [OPTIONS] <FILE> <NUMBER_OF_FILES>

ARGS:
    <FILE>               The csv file to split
    <NUMBER_OF_FILES>    The number of files to be created with the contents of the original
                         file

OPTIONS:
    -h, --help                     Print help information
    -n, --not-signed-file          Flag to indicate the first line of FILE is a header line
    -r, --remaining-in-new-file    Flag to write remaining lines at an extra file (NUMBER_OF_FILES +
                                   1). When disabled writes remaining rows to the last file
                                   (NUMBER_OF_FILES)
    -v, --verbose                  Print when file is created
    -V, --version                  Print version information