├── .codecov.yml ├── .gitattributes ├── .github └── workflows │ └── build-test.yml ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── NOTICES.txt ├── README.md ├── _config.yml ├── bash_completion └── tsv-utils ├── common ├── README.md ├── dub.json ├── makefile └── src │ └── tsv_utils │ └── common │ ├── fieldlist.d │ ├── getopt_inorder.d │ ├── numerics.d │ ├── package.d │ ├── tsvutils_version.d │ ├── unittest_utils.d │ └── utils.d ├── csv2tsv ├── README.md ├── dub.json ├── makefile ├── profile_data │ ├── collect_profile_data.sh │ ├── profile_data_1a.csv │ ├── profile_data_1b.csv │ ├── profile_data_3a.csv │ ├── profile_data_3b.csv │ └── profile_data_5.csv ├── src │ └── tsv_utils │ │ └── csv2tsv.d ├── src_v1 │ └── tsv_utils │ │ └── csv2tsv.d └── tests │ ├── gold │ ├── basic_tests_1.txt │ └── error_tests_1.txt │ ├── header1.csv │ ├── header2.csv │ ├── header3.csv │ ├── header4.csv │ ├── header5.csv │ ├── input1_format1.csv │ ├── input1_format2.csv │ ├── input1_format3.csv │ ├── input2.csv │ ├── input3.csv │ ├── input_bom.csv │ ├── input_unicode.csv │ ├── invalid1.csv │ ├── invalid2.csv │ └── tests.sh ├── docs ├── AboutTheCode.md ├── BuildCommands.md ├── BuildingWithLTO.md ├── OtherToolkits.md ├── Performance.md ├── TipsAndTricks.md ├── ToolReference.md ├── ToolReference_v1.6.md ├── comparative-benchmarks-2017.md ├── comparative-benchmarks-2018.md ├── comparing-tsv-and-csv.md ├── dconf2018.pdf ├── dlang-meetup-14dec2017.pdf ├── images │ ├── column-selection-narrow_linux_2018.jpg │ ├── column-selection-narrow_macos_2018.jpg │ ├── column-selection_linux_2018.jpg │ ├── column-selection_macos_2018.jpg │ ├── csv2tsv_linux_2018.jpg │ ├── csv2tsv_macos_2018.jpg │ ├── join-two-files_linux_2018.jpg │ ├── join-two-files_macos_2018.jpg │ ├── numeric-row-filter_linux_2018.jpg │ ├── numeric-row-filter_macos_2018.jpg │ ├── regex-row-filter_linux_2018.jpg │ ├── regex-row-filter_macos_2018.jpg │ ├── summary-statistics_linux_2018.jpg │ └── summary-statistics_macos_2018.jpg ├── lto-pgo-study.md └── tool_reference │ ├── common-options-and-behavior.md │ ├── csv2tsv.md │ ├── keep-header.md │ ├── number-lines.md │ ├── tsv-append.md │ ├── tsv-filter.md │ ├── tsv-join.md │ ├── tsv-pretty.md │ ├── tsv-sample.md │ ├── tsv-select.md │ ├── tsv-split.md │ ├── tsv-summarize.md │ └── tsv-uniq.md ├── dub.json ├── dub_build.d ├── extras └── scripts │ ├── tsv-sort │ └── tsv-sort-fast ├── keep-header ├── README.md ├── dub.json ├── makefile ├── src │ └── tsv_utils │ │ └── keep-header.d └── tests │ ├── emptyfile.txt │ ├── gold │ ├── basic_tests_1.txt │ └── error_tests_1.txt │ ├── input1.csv │ ├── input2.csv │ ├── input_headeronly.csv │ ├── oneblankline.txt │ └── tests.sh ├── makeapp.mk ├── makedefs.mk ├── makefile ├── number-lines ├── README.md ├── dub.json ├── makefile ├── src │ └── tsv_utils │ │ └── number-lines.d └── tests │ ├── empty-file.txt │ ├── gold │ ├── basic_tests_1.txt │ └── error_tests_1.txt │ ├── input1.txt │ ├── input2.txt │ ├── one-line-file.txt │ └── tests.sh ├── tsv-append ├── README.md ├── dub.json ├── makefile ├── src │ └── tsv_utils │ │ └── tsv-append.d └── tests │ ├── empty-file.txt │ ├── gold │ ├── basic_tests_1.txt │ └── error_tests_1.txt │ ├── input1x3.tsv │ ├── input1x4.tsv │ ├── input3x2.tsv │ ├── input3x5.tsv │ └── tests.sh ├── tsv-filter ├── README.md ├── dub.json ├── makefile ├── profile_data │ ├── collect_profile_data.sh │ ├── profile_data_1.tsv │ ├── profile_data_2.tsv │ ├── profile_data_3.tsv │ ├── profile_data_4.tsv │ └── profile_data_5.tsv ├── src │ └── tsv_utils │ │ └── tsv-filter.d └── tests │ ├── gold │ ├── basic_tests_1.txt │ ├── error_tests_1.2081.txt │ └── error_tests_1.txt │ ├── input1.dos_tsv │ ├── input1.tsv │ ├── input1_noheader.tsv │ ├── input2.tsv │ ├── input2_pipe-sep.tsv │ ├── input4.tsv │ ├── input_3x0.tsv │ ├── input_3x1.tsv │ ├── input_3x2.tsv │ ├── input_3x3.tsv │ ├── input_emptyfile.tsv │ ├── input_num_or_empty.tsv │ ├── input_numeric_tests.tsv │ ├── input_onefield.txt │ ├── input_unicode.tsv │ ├── test-config.json │ └── tests.sh ├── tsv-join ├── README.md ├── dub.json ├── makefile ├── src │ └── tsv_utils │ │ └── tsv-join.d └── tests │ ├── gold │ ├── basic_tests_1.txt │ └── error_tests_1.txt │ ├── input1.dos_tsv │ ├── input1.tsv │ ├── input1_noheader.tsv │ ├── input1_rotated.tsv │ ├── input2.dos_tsv │ ├── input2.tsv │ ├── input2_noheader.tsv │ ├── input_1x5.tsv │ ├── input_2x3_colon.tsv │ ├── input_5x4_colon.tsv │ ├── input_emptyfile.tsv │ └── tests.sh ├── tsv-pretty ├── README.md ├── dub.json ├── makefile ├── src │ ├── code-notes.md │ └── tsv_utils │ │ └── tsv-pretty.d └── tests │ ├── emptyfile.tsv │ ├── gold │ ├── basic_tests_1.txt │ ├── basic_tests_2.txt │ ├── basic_tests_3.txt │ ├── basic_tests_4.txt │ ├── basic_tests_5.txt │ ├── basic_tests_6.txt │ ├── basic_tests_7.txt │ ├── basic_tests_8.txt │ └── error_tests_1.txt │ ├── input_5x1.tsv │ ├── input_5x1_alltext.tsv │ ├── input_5x1_noheader.tsv │ ├── input_5x1_noheader_preamble1.tsv │ ├── input_5x1_noheader_preamble2.tsv │ ├── input_5x1_preamble1.tsv │ ├── input_5x1_preamble2.tsv │ ├── input_5x2.tsv │ ├── input_5x2_noheader.tsv │ ├── input_5x2_noheader_preamble1.tsv │ ├── input_5x2_noheader_preamble2.tsv │ ├── input_5x2_preamble1.tsv │ ├── input_5x2_preamble2.tsv │ ├── input_5x3.tsv │ ├── input_5x3_preamble1.tsv │ ├── input_5x3_preamble2.tsv │ ├── input_5x4_noheader.tsv │ ├── input_5x5.tsv │ ├── input_comma_delim.tsv │ ├── input_mixed_1.tsv │ ├── input_mixed_2.tsv │ ├── input_numbers_1.tsv │ ├── input_numbers_2.tsv │ ├── input_numbers_3.tsv │ ├── input_numbers_4.tsv │ ├── input_numbers_noheader_1.tsv │ ├── input_numbers_noheader_2.tsv │ ├── input_numbers_noheader_3.tsv │ ├── input_numbers_noheader_4.tsv │ ├── input_sample_preamble.tsv │ ├── input_text_1.tsv │ ├── input_unicode.tsv │ ├── invalid_unicode.tsv │ └── tests.sh ├── tsv-sample ├── README.md ├── dub.json ├── makefile ├── profile_data │ ├── collect_profile_data.sh │ ├── profile_data_1.tsv │ ├── profile_data_2.tsv │ └── profile_data_3.tsv ├── src │ └── tsv_utils │ │ └── tsv-sample.d └── tests │ ├── gold │ ├── basic_tests_1.txt │ ├── error_tests_1.txt │ ├── error_tests_2.2081.txt │ └── error_tests_2.txt │ ├── input2x10_noheader.tsv │ ├── input2x1_noheader.tsv │ ├── input2x5_noheader.dos_tsv │ ├── input2x5_noheader.tsv │ ├── input2x7_atsign.tsv │ ├── input3x0.tsv │ ├── input3x10.tsv │ ├── input3x25.dos_tsv │ ├── input3x25.tsv │ ├── input3x25_negative_wt.tsv │ ├── input3x3.tsv │ ├── input3x4.tsv │ ├── input4x15.tsv │ ├── input4x50.tsv │ ├── test-config.json │ └── tests.sh ├── tsv-select ├── README.md ├── dub.json ├── makefile ├── profile_data │ ├── collect_profile_data.sh │ ├── profile_data_1.tsv │ ├── profile_data_2.tsv │ └── profile_data_3.tsv ├── src │ └── tsv_utils │ │ └── tsv-select.d ├── src_no-template │ └── tsv-select_no-template-version.d.txt └── tests │ ├── gold │ ├── basic_tests_1.txt │ └── error_tests_1.txt │ ├── input1.dos_tsv │ ├── input1.tsv │ ├── input_1field.tsv │ ├── input_2fields.tsv │ ├── input_2plus_hat_delim.tsv │ ├── input_3plus_fields.tsv │ ├── input_3x0.tsv │ ├── input_3x1.tsv │ ├── input_3x2.tsv │ ├── input_3x3.tsv │ ├── input_8xlong.tsv │ ├── input_emptyfile.tsv │ ├── input_header1.tsv │ ├── input_header2.tsv │ ├── input_header3.tsv │ ├── input_header4.tsv │ ├── input_header_variants.tsv │ └── tests.sh ├── tsv-split ├── README.md ├── dub.json ├── makefile ├── profile_data │ ├── collect_profile_data.sh │ ├── profile_data_1.tsv │ ├── profile_data_2.tsv │ └── profile_data_3.tsv ├── src │ └── tsv_utils │ │ └── tsv-split.d └── tests │ ├── empty-file.txt │ ├── gold │ ├── error_tests_1.txt │ ├── help_and_version_tests.txt │ ├── key_assignment_tests.txt │ ├── lines_per_file_tests.txt │ └── random_assignment_tests.txt │ ├── input1x3.txt │ ├── input1x5.txt │ ├── input4x18.tsv │ ├── input4x58.tsv │ ├── input4x58_colon-delim.tsv │ └── tests.sh ├── tsv-summarize ├── README.md ├── dub.json ├── makefile ├── profile_data │ ├── collect_profile_data.sh │ ├── profile_data_1.tsv │ ├── profile_data_2.tsv │ └── profile_data_3.tsv ├── src │ └── tsv_utils │ │ └── tsv-summarize.d └── tests │ ├── empty_file.tsv │ ├── gold │ ├── basic_tests_1.txt │ ├── error_tests_1.2081.txt │ └── error_tests_1.txt │ ├── input_1field_a.dos_tsv │ ├── input_1field_a.tsv │ ├── input_1field_b.tsv │ ├── input_2field_a.tsv │ ├── input_2field_b.tsv │ ├── input_5field_a.tsv │ ├── input_5field_b.tsv │ ├── input_5field_c.tsv │ ├── input_5field_d.tsv │ ├── input_5field_header_only.tsv │ ├── test-config.json │ └── tests.sh └── tsv-uniq ├── README.md ├── dub.json ├── makefile ├── profile_data ├── collect_profile_data.sh ├── profile_data_1.tsv ├── profile_data_2.tsv └── profile_data_3.tsv ├── src └── tsv_utils │ └── tsv-uniq.d └── tests ├── empty-file.txt ├── gold ├── basic_tests_1.txt └── error_tests_1.txt ├── input1.tsv ├── input1_noheader.tsv ├── input2.tsv ├── input3.tsv ├── input_delim_underscore.tsv └── tests.sh /.codecov.yml: -------------------------------------------------------------------------------- 1 | comment: 2 | layout: "diff, files" 3 | require_changes: yes 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/.github/workflows/build-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/NOTICES.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/_config.yml -------------------------------------------------------------------------------- /bash_completion/tsv-utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/bash_completion/tsv-utils -------------------------------------------------------------------------------- /common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/common/README.md -------------------------------------------------------------------------------- /common/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/common/dub.json -------------------------------------------------------------------------------- /common/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/common/makefile -------------------------------------------------------------------------------- /common/src/tsv_utils/common/fieldlist.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/common/src/tsv_utils/common/fieldlist.d -------------------------------------------------------------------------------- /common/src/tsv_utils/common/getopt_inorder.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/common/src/tsv_utils/common/getopt_inorder.d -------------------------------------------------------------------------------- /common/src/tsv_utils/common/numerics.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/common/src/tsv_utils/common/numerics.d -------------------------------------------------------------------------------- /common/src/tsv_utils/common/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/common/src/tsv_utils/common/package.d -------------------------------------------------------------------------------- /common/src/tsv_utils/common/tsvutils_version.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/common/src/tsv_utils/common/tsvutils_version.d -------------------------------------------------------------------------------- /common/src/tsv_utils/common/unittest_utils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/common/src/tsv_utils/common/unittest_utils.d -------------------------------------------------------------------------------- /common/src/tsv_utils/common/utils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/common/src/tsv_utils/common/utils.d -------------------------------------------------------------------------------- /csv2tsv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/README.md -------------------------------------------------------------------------------- /csv2tsv/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/dub.json -------------------------------------------------------------------------------- /csv2tsv/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/makefile -------------------------------------------------------------------------------- /csv2tsv/profile_data/collect_profile_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/profile_data/collect_profile_data.sh -------------------------------------------------------------------------------- /csv2tsv/profile_data/profile_data_1a.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/profile_data/profile_data_1a.csv -------------------------------------------------------------------------------- /csv2tsv/profile_data/profile_data_1b.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/profile_data/profile_data_1b.csv -------------------------------------------------------------------------------- /csv2tsv/profile_data/profile_data_3a.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/profile_data/profile_data_3a.csv -------------------------------------------------------------------------------- /csv2tsv/profile_data/profile_data_3b.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/profile_data/profile_data_3b.csv -------------------------------------------------------------------------------- /csv2tsv/profile_data/profile_data_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/profile_data/profile_data_5.csv -------------------------------------------------------------------------------- /csv2tsv/src/tsv_utils/csv2tsv.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/src/tsv_utils/csv2tsv.d -------------------------------------------------------------------------------- /csv2tsv/src_v1/tsv_utils/csv2tsv.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/src_v1/tsv_utils/csv2tsv.d -------------------------------------------------------------------------------- /csv2tsv/tests/gold/basic_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/gold/basic_tests_1.txt -------------------------------------------------------------------------------- /csv2tsv/tests/gold/error_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/gold/error_tests_1.txt -------------------------------------------------------------------------------- /csv2tsv/tests/header1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/header1.csv -------------------------------------------------------------------------------- /csv2tsv/tests/header2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/header2.csv -------------------------------------------------------------------------------- /csv2tsv/tests/header3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/header3.csv -------------------------------------------------------------------------------- /csv2tsv/tests/header4.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /csv2tsv/tests/header5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/header5.csv -------------------------------------------------------------------------------- /csv2tsv/tests/input1_format1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/input1_format1.csv -------------------------------------------------------------------------------- /csv2tsv/tests/input1_format2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/input1_format2.csv -------------------------------------------------------------------------------- /csv2tsv/tests/input1_format3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/input1_format3.csv -------------------------------------------------------------------------------- /csv2tsv/tests/input2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/input2.csv -------------------------------------------------------------------------------- /csv2tsv/tests/input3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/input3.csv -------------------------------------------------------------------------------- /csv2tsv/tests/input_bom.csv: -------------------------------------------------------------------------------- 1 | abc,def,ghi 2 | "ABC","DEF","GHI" 3 | 12.3,45.6,78.9 4 | -------------------------------------------------------------------------------- /csv2tsv/tests/input_unicode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/input_unicode.csv -------------------------------------------------------------------------------- /csv2tsv/tests/invalid1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/invalid1.csv -------------------------------------------------------------------------------- /csv2tsv/tests/invalid2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/invalid2.csv -------------------------------------------------------------------------------- /csv2tsv/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/csv2tsv/tests/tests.sh -------------------------------------------------------------------------------- /docs/AboutTheCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/AboutTheCode.md -------------------------------------------------------------------------------- /docs/BuildCommands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/BuildCommands.md -------------------------------------------------------------------------------- /docs/BuildingWithLTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/BuildingWithLTO.md -------------------------------------------------------------------------------- /docs/OtherToolkits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/OtherToolkits.md -------------------------------------------------------------------------------- /docs/Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/Performance.md -------------------------------------------------------------------------------- /docs/TipsAndTricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/TipsAndTricks.md -------------------------------------------------------------------------------- /docs/ToolReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/ToolReference.md -------------------------------------------------------------------------------- /docs/ToolReference_v1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/ToolReference_v1.6.md -------------------------------------------------------------------------------- /docs/comparative-benchmarks-2017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/comparative-benchmarks-2017.md -------------------------------------------------------------------------------- /docs/comparative-benchmarks-2018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/comparative-benchmarks-2018.md -------------------------------------------------------------------------------- /docs/comparing-tsv-and-csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/comparing-tsv-and-csv.md -------------------------------------------------------------------------------- /docs/dconf2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/dconf2018.pdf -------------------------------------------------------------------------------- /docs/dlang-meetup-14dec2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/dlang-meetup-14dec2017.pdf -------------------------------------------------------------------------------- /docs/images/column-selection-narrow_linux_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/column-selection-narrow_linux_2018.jpg -------------------------------------------------------------------------------- /docs/images/column-selection-narrow_macos_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/column-selection-narrow_macos_2018.jpg -------------------------------------------------------------------------------- /docs/images/column-selection_linux_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/column-selection_linux_2018.jpg -------------------------------------------------------------------------------- /docs/images/column-selection_macos_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/column-selection_macos_2018.jpg -------------------------------------------------------------------------------- /docs/images/csv2tsv_linux_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/csv2tsv_linux_2018.jpg -------------------------------------------------------------------------------- /docs/images/csv2tsv_macos_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/csv2tsv_macos_2018.jpg -------------------------------------------------------------------------------- /docs/images/join-two-files_linux_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/join-two-files_linux_2018.jpg -------------------------------------------------------------------------------- /docs/images/join-two-files_macos_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/join-two-files_macos_2018.jpg -------------------------------------------------------------------------------- /docs/images/numeric-row-filter_linux_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/numeric-row-filter_linux_2018.jpg -------------------------------------------------------------------------------- /docs/images/numeric-row-filter_macos_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/numeric-row-filter_macos_2018.jpg -------------------------------------------------------------------------------- /docs/images/regex-row-filter_linux_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/regex-row-filter_linux_2018.jpg -------------------------------------------------------------------------------- /docs/images/regex-row-filter_macos_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/regex-row-filter_macos_2018.jpg -------------------------------------------------------------------------------- /docs/images/summary-statistics_linux_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/summary-statistics_linux_2018.jpg -------------------------------------------------------------------------------- /docs/images/summary-statistics_macos_2018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/images/summary-statistics_macos_2018.jpg -------------------------------------------------------------------------------- /docs/lto-pgo-study.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/lto-pgo-study.md -------------------------------------------------------------------------------- /docs/tool_reference/common-options-and-behavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/common-options-and-behavior.md -------------------------------------------------------------------------------- /docs/tool_reference/csv2tsv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/csv2tsv.md -------------------------------------------------------------------------------- /docs/tool_reference/keep-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/keep-header.md -------------------------------------------------------------------------------- /docs/tool_reference/number-lines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/number-lines.md -------------------------------------------------------------------------------- /docs/tool_reference/tsv-append.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/tsv-append.md -------------------------------------------------------------------------------- /docs/tool_reference/tsv-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/tsv-filter.md -------------------------------------------------------------------------------- /docs/tool_reference/tsv-join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/tsv-join.md -------------------------------------------------------------------------------- /docs/tool_reference/tsv-pretty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/tsv-pretty.md -------------------------------------------------------------------------------- /docs/tool_reference/tsv-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/tsv-sample.md -------------------------------------------------------------------------------- /docs/tool_reference/tsv-select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/tsv-select.md -------------------------------------------------------------------------------- /docs/tool_reference/tsv-split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/tsv-split.md -------------------------------------------------------------------------------- /docs/tool_reference/tsv-summarize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/tsv-summarize.md -------------------------------------------------------------------------------- /docs/tool_reference/tsv-uniq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/docs/tool_reference/tsv-uniq.md -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/dub.json -------------------------------------------------------------------------------- /dub_build.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/dub_build.d -------------------------------------------------------------------------------- /extras/scripts/tsv-sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/extras/scripts/tsv-sort -------------------------------------------------------------------------------- /extras/scripts/tsv-sort-fast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/extras/scripts/tsv-sort-fast -------------------------------------------------------------------------------- /keep-header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/keep-header/README.md -------------------------------------------------------------------------------- /keep-header/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/keep-header/dub.json -------------------------------------------------------------------------------- /keep-header/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/keep-header/makefile -------------------------------------------------------------------------------- /keep-header/src/tsv_utils/keep-header.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/keep-header/src/tsv_utils/keep-header.d -------------------------------------------------------------------------------- /keep-header/tests/emptyfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keep-header/tests/gold/basic_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/keep-header/tests/gold/basic_tests_1.txt -------------------------------------------------------------------------------- /keep-header/tests/gold/error_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/keep-header/tests/gold/error_tests_1.txt -------------------------------------------------------------------------------- /keep-header/tests/input1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/keep-header/tests/input1.csv -------------------------------------------------------------------------------- /keep-header/tests/input2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/keep-header/tests/input2.csv -------------------------------------------------------------------------------- /keep-header/tests/input_headeronly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/keep-header/tests/input_headeronly.csv -------------------------------------------------------------------------------- /keep-header/tests/oneblankline.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /keep-header/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/keep-header/tests/tests.sh -------------------------------------------------------------------------------- /makeapp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/makeapp.mk -------------------------------------------------------------------------------- /makedefs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/makedefs.mk -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/makefile -------------------------------------------------------------------------------- /number-lines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/number-lines/README.md -------------------------------------------------------------------------------- /number-lines/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/number-lines/dub.json -------------------------------------------------------------------------------- /number-lines/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/number-lines/makefile -------------------------------------------------------------------------------- /number-lines/src/tsv_utils/number-lines.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/number-lines/src/tsv_utils/number-lines.d -------------------------------------------------------------------------------- /number-lines/tests/empty-file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /number-lines/tests/gold/basic_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/number-lines/tests/gold/basic_tests_1.txt -------------------------------------------------------------------------------- /number-lines/tests/gold/error_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/number-lines/tests/gold/error_tests_1.txt -------------------------------------------------------------------------------- /number-lines/tests/input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/number-lines/tests/input1.txt -------------------------------------------------------------------------------- /number-lines/tests/input2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/number-lines/tests/input2.txt -------------------------------------------------------------------------------- /number-lines/tests/one-line-file.txt: -------------------------------------------------------------------------------- 1 | The one line 2 | -------------------------------------------------------------------------------- /number-lines/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/number-lines/tests/tests.sh -------------------------------------------------------------------------------- /tsv-append/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-append/README.md -------------------------------------------------------------------------------- /tsv-append/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-append/dub.json -------------------------------------------------------------------------------- /tsv-append/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-append/makefile -------------------------------------------------------------------------------- /tsv-append/src/tsv_utils/tsv-append.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-append/src/tsv_utils/tsv-append.d -------------------------------------------------------------------------------- /tsv-append/tests/empty-file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsv-append/tests/gold/basic_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-append/tests/gold/basic_tests_1.txt -------------------------------------------------------------------------------- /tsv-append/tests/gold/error_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-append/tests/gold/error_tests_1.txt -------------------------------------------------------------------------------- /tsv-append/tests/input1x3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-append/tests/input1x3.tsv -------------------------------------------------------------------------------- /tsv-append/tests/input1x4.tsv: -------------------------------------------------------------------------------- 1 | field1 2 | next-empty 3 | 4 | last-line 5 | -------------------------------------------------------------------------------- /tsv-append/tests/input3x2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-append/tests/input3x2.tsv -------------------------------------------------------------------------------- /tsv-append/tests/input3x5.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-append/tests/input3x5.tsv -------------------------------------------------------------------------------- /tsv-append/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-append/tests/tests.sh -------------------------------------------------------------------------------- /tsv-filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/README.md -------------------------------------------------------------------------------- /tsv-filter/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/dub.json -------------------------------------------------------------------------------- /tsv-filter/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/makefile -------------------------------------------------------------------------------- /tsv-filter/profile_data/collect_profile_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/profile_data/collect_profile_data.sh -------------------------------------------------------------------------------- /tsv-filter/profile_data/profile_data_1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/profile_data/profile_data_1.tsv -------------------------------------------------------------------------------- /tsv-filter/profile_data/profile_data_2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/profile_data/profile_data_2.tsv -------------------------------------------------------------------------------- /tsv-filter/profile_data/profile_data_3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/profile_data/profile_data_3.tsv -------------------------------------------------------------------------------- /tsv-filter/profile_data/profile_data_4.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/profile_data/profile_data_4.tsv -------------------------------------------------------------------------------- /tsv-filter/profile_data/profile_data_5.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/profile_data/profile_data_5.tsv -------------------------------------------------------------------------------- /tsv-filter/src/tsv_utils/tsv-filter.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/src/tsv_utils/tsv-filter.d -------------------------------------------------------------------------------- /tsv-filter/tests/gold/basic_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/gold/basic_tests_1.txt -------------------------------------------------------------------------------- /tsv-filter/tests/gold/error_tests_1.2081.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/gold/error_tests_1.2081.txt -------------------------------------------------------------------------------- /tsv-filter/tests/gold/error_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/gold/error_tests_1.txt -------------------------------------------------------------------------------- /tsv-filter/tests/input1.dos_tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/input1.dos_tsv -------------------------------------------------------------------------------- /tsv-filter/tests/input1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/input1.tsv -------------------------------------------------------------------------------- /tsv-filter/tests/input1_noheader.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/input1_noheader.tsv -------------------------------------------------------------------------------- /tsv-filter/tests/input2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/input2.tsv -------------------------------------------------------------------------------- /tsv-filter/tests/input2_pipe-sep.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/input2_pipe-sep.tsv -------------------------------------------------------------------------------- /tsv-filter/tests/input4.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/input4.tsv -------------------------------------------------------------------------------- /tsv-filter/tests/input_3x0.tsv: -------------------------------------------------------------------------------- 1 | f1 f2 f3 2 | -------------------------------------------------------------------------------- /tsv-filter/tests/input_3x1.tsv: -------------------------------------------------------------------------------- 1 | f1 f2 f3 2 | 3x1-r1 201 301 3 | -------------------------------------------------------------------------------- /tsv-filter/tests/input_3x2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/input_3x2.tsv -------------------------------------------------------------------------------- /tsv-filter/tests/input_3x3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/input_3x3.tsv -------------------------------------------------------------------------------- /tsv-filter/tests/input_emptyfile.tsv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsv-filter/tests/input_num_or_empty.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/input_num_or_empty.tsv -------------------------------------------------------------------------------- /tsv-filter/tests/input_numeric_tests.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/input_numeric_tests.tsv -------------------------------------------------------------------------------- /tsv-filter/tests/input_onefield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/input_onefield.txt -------------------------------------------------------------------------------- /tsv-filter/tests/input_unicode.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/input_unicode.tsv -------------------------------------------------------------------------------- /tsv-filter/tests/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/test-config.json -------------------------------------------------------------------------------- /tsv-filter/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-filter/tests/tests.sh -------------------------------------------------------------------------------- /tsv-join/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/README.md -------------------------------------------------------------------------------- /tsv-join/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/dub.json -------------------------------------------------------------------------------- /tsv-join/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/makefile -------------------------------------------------------------------------------- /tsv-join/src/tsv_utils/tsv-join.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/src/tsv_utils/tsv-join.d -------------------------------------------------------------------------------- /tsv-join/tests/gold/basic_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/tests/gold/basic_tests_1.txt -------------------------------------------------------------------------------- /tsv-join/tests/gold/error_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/tests/gold/error_tests_1.txt -------------------------------------------------------------------------------- /tsv-join/tests/input1.dos_tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/tests/input1.dos_tsv -------------------------------------------------------------------------------- /tsv-join/tests/input1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/tests/input1.tsv -------------------------------------------------------------------------------- /tsv-join/tests/input1_noheader.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/tests/input1_noheader.tsv -------------------------------------------------------------------------------- /tsv-join/tests/input1_rotated.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/tests/input1_rotated.tsv -------------------------------------------------------------------------------- /tsv-join/tests/input2.dos_tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/tests/input2.dos_tsv -------------------------------------------------------------------------------- /tsv-join/tests/input2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/tests/input2.tsv -------------------------------------------------------------------------------- /tsv-join/tests/input2_noheader.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/tests/input2_noheader.tsv -------------------------------------------------------------------------------- /tsv-join/tests/input_1x5.tsv: -------------------------------------------------------------------------------- 1 | fa 2 | ggg 3 | a b c d e 4 | PPP 5 | 3 6 | v 7 | -------------------------------------------------------------------------------- /tsv-join/tests/input_2x3_colon.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/tests/input_2x3_colon.tsv -------------------------------------------------------------------------------- /tsv-join/tests/input_5x4_colon.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/tests/input_5x4_colon.tsv -------------------------------------------------------------------------------- /tsv-join/tests/input_emptyfile.tsv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsv-join/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-join/tests/tests.sh -------------------------------------------------------------------------------- /tsv-pretty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/README.md -------------------------------------------------------------------------------- /tsv-pretty/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/dub.json -------------------------------------------------------------------------------- /tsv-pretty/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/makefile -------------------------------------------------------------------------------- /tsv-pretty/src/code-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/src/code-notes.md -------------------------------------------------------------------------------- /tsv-pretty/src/tsv_utils/tsv-pretty.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/src/tsv_utils/tsv-pretty.d -------------------------------------------------------------------------------- /tsv-pretty/tests/emptyfile.tsv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsv-pretty/tests/gold/basic_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/gold/basic_tests_1.txt -------------------------------------------------------------------------------- /tsv-pretty/tests/gold/basic_tests_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/gold/basic_tests_2.txt -------------------------------------------------------------------------------- /tsv-pretty/tests/gold/basic_tests_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/gold/basic_tests_3.txt -------------------------------------------------------------------------------- /tsv-pretty/tests/gold/basic_tests_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/gold/basic_tests_4.txt -------------------------------------------------------------------------------- /tsv-pretty/tests/gold/basic_tests_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/gold/basic_tests_5.txt -------------------------------------------------------------------------------- /tsv-pretty/tests/gold/basic_tests_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/gold/basic_tests_6.txt -------------------------------------------------------------------------------- /tsv-pretty/tests/gold/basic_tests_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/gold/basic_tests_7.txt -------------------------------------------------------------------------------- /tsv-pretty/tests/gold/basic_tests_8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/gold/basic_tests_8.txt -------------------------------------------------------------------------------- /tsv-pretty/tests/gold/error_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/gold/error_tests_1.txt -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x1.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x1_alltext.tsv: -------------------------------------------------------------------------------- 1 | abc d ef g hijk 2 | -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x1_noheader.tsv: -------------------------------------------------------------------------------- 1 | ABC 22 14 . ab 2 | -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x1_noheader_preamble1.tsv: -------------------------------------------------------------------------------- 1 | ### A one line preamble ### 2 | ABC 22 14 . ab 3 | -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x1_noheader_preamble2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x1_noheader_preamble2.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x1_preamble1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x1_preamble1.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x1_preamble2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x1_preamble2.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x2.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x2_noheader.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x2_noheader.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x2_noheader_preamble1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x2_noheader_preamble1.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x2_noheader_preamble2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x2_noheader_preamble2.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x2_preamble1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x2_preamble1.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x2_preamble2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x2_preamble2.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x3.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x3_preamble1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x3_preamble1.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x3_preamble2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x3_preamble2.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x4_noheader.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x4_noheader.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_5x5.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_5x5.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_comma_delim.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_comma_delim.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_mixed_1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_mixed_1.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_mixed_2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_mixed_2.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_numbers_1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_numbers_1.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_numbers_2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_numbers_2.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_numbers_3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_numbers_3.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_numbers_4.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_numbers_4.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_numbers_noheader_1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_numbers_noheader_1.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_numbers_noheader_2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_numbers_noheader_2.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_numbers_noheader_3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_numbers_noheader_3.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_numbers_noheader_4.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_numbers_noheader_4.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_sample_preamble.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_sample_preamble.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_text_1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_text_1.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/input_unicode.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/input_unicode.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/invalid_unicode.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/invalid_unicode.tsv -------------------------------------------------------------------------------- /tsv-pretty/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-pretty/tests/tests.sh -------------------------------------------------------------------------------- /tsv-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/README.md -------------------------------------------------------------------------------- /tsv-sample/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/dub.json -------------------------------------------------------------------------------- /tsv-sample/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/makefile -------------------------------------------------------------------------------- /tsv-sample/profile_data/collect_profile_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/profile_data/collect_profile_data.sh -------------------------------------------------------------------------------- /tsv-sample/profile_data/profile_data_1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/profile_data/profile_data_1.tsv -------------------------------------------------------------------------------- /tsv-sample/profile_data/profile_data_2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/profile_data/profile_data_2.tsv -------------------------------------------------------------------------------- /tsv-sample/profile_data/profile_data_3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/profile_data/profile_data_3.tsv -------------------------------------------------------------------------------- /tsv-sample/src/tsv_utils/tsv-sample.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/src/tsv_utils/tsv-sample.d -------------------------------------------------------------------------------- /tsv-sample/tests/gold/basic_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/gold/basic_tests_1.txt -------------------------------------------------------------------------------- /tsv-sample/tests/gold/error_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/gold/error_tests_1.txt -------------------------------------------------------------------------------- /tsv-sample/tests/gold/error_tests_2.2081.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/gold/error_tests_2.2081.txt -------------------------------------------------------------------------------- /tsv-sample/tests/gold/error_tests_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/gold/error_tests_2.txt -------------------------------------------------------------------------------- /tsv-sample/tests/input2x10_noheader.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/input2x10_noheader.tsv -------------------------------------------------------------------------------- /tsv-sample/tests/input2x1_noheader.tsv: -------------------------------------------------------------------------------- 1 | 0.157876295 Jacques le fataliste et son maître 2 | -------------------------------------------------------------------------------- /tsv-sample/tests/input2x5_noheader.dos_tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/input2x5_noheader.dos_tsv -------------------------------------------------------------------------------- /tsv-sample/tests/input2x5_noheader.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/input2x5_noheader.tsv -------------------------------------------------------------------------------- /tsv-sample/tests/input2x7_atsign.tsv: -------------------------------------------------------------------------------- 1 | title@weight 2 | 友情@5992 3 | 法螺男爵旅土産@5803 4 | 續惡魔@5815 5 | 幽霊書店@5903 6 | マルチン・ルターの小信仰問答書@5489 7 | Aristophanis Lysistrata@5464 8 | Ephemerides Barometricae Mutinenses@5869 9 | -------------------------------------------------------------------------------- /tsv-sample/tests/input3x0.tsv: -------------------------------------------------------------------------------- 1 | line title weight 2 | -------------------------------------------------------------------------------- /tsv-sample/tests/input3x10.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/input3x10.tsv -------------------------------------------------------------------------------- /tsv-sample/tests/input3x25.dos_tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/input3x25.dos_tsv -------------------------------------------------------------------------------- /tsv-sample/tests/input3x25.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/input3x25.tsv -------------------------------------------------------------------------------- /tsv-sample/tests/input3x25_negative_wt.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/input3x25_negative_wt.tsv -------------------------------------------------------------------------------- /tsv-sample/tests/input3x3.tsv: -------------------------------------------------------------------------------- 1 | line title weight 2 | 1 Thérèse Desqueyroux 43 3 | 2 Bonjour Tristesse 3 4 | 3 Le Silence de la mer 72 5 | -------------------------------------------------------------------------------- /tsv-sample/tests/input3x4.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/input3x4.tsv -------------------------------------------------------------------------------- /tsv-sample/tests/input4x15.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/input4x15.tsv -------------------------------------------------------------------------------- /tsv-sample/tests/input4x50.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/input4x50.tsv -------------------------------------------------------------------------------- /tsv-sample/tests/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/test-config.json -------------------------------------------------------------------------------- /tsv-sample/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-sample/tests/tests.sh -------------------------------------------------------------------------------- /tsv-select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/README.md -------------------------------------------------------------------------------- /tsv-select/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/dub.json -------------------------------------------------------------------------------- /tsv-select/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/makefile -------------------------------------------------------------------------------- /tsv-select/profile_data/collect_profile_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/profile_data/collect_profile_data.sh -------------------------------------------------------------------------------- /tsv-select/profile_data/profile_data_1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/profile_data/profile_data_1.tsv -------------------------------------------------------------------------------- /tsv-select/profile_data/profile_data_2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/profile_data/profile_data_2.tsv -------------------------------------------------------------------------------- /tsv-select/profile_data/profile_data_3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/profile_data/profile_data_3.tsv -------------------------------------------------------------------------------- /tsv-select/src/tsv_utils/tsv-select.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/src/tsv_utils/tsv-select.d -------------------------------------------------------------------------------- /tsv-select/src_no-template/tsv-select_no-template-version.d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/src_no-template/tsv-select_no-template-version.d.txt -------------------------------------------------------------------------------- /tsv-select/tests/gold/basic_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/gold/basic_tests_1.txt -------------------------------------------------------------------------------- /tsv-select/tests/gold/error_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/gold/error_tests_1.txt -------------------------------------------------------------------------------- /tsv-select/tests/input1.dos_tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/input1.dos_tsv -------------------------------------------------------------------------------- /tsv-select/tests/input1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/input1.tsv -------------------------------------------------------------------------------- /tsv-select/tests/input_1field.tsv: -------------------------------------------------------------------------------- 1 | 1 2 | 2 abc def 3 | 3 4 | 4 567 89-10 5 | -------------------------------------------------------------------------------- /tsv-select/tests/input_2fields.tsv: -------------------------------------------------------------------------------- 1 | f1 f2 2 | abc def 3 | 123 456 4 | ABC DEF 5 | -------------------------------------------------------------------------------- /tsv-select/tests/input_2plus_hat_delim.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/input_2plus_hat_delim.tsv -------------------------------------------------------------------------------- /tsv-select/tests/input_3plus_fields.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/input_3plus_fields.tsv -------------------------------------------------------------------------------- /tsv-select/tests/input_3x0.tsv: -------------------------------------------------------------------------------- 1 | f1 f2 f3 2 | -------------------------------------------------------------------------------- /tsv-select/tests/input_3x1.tsv: -------------------------------------------------------------------------------- 1 | f1 f2 f3 2 | 3x1-r1 201 301 3 | -------------------------------------------------------------------------------- /tsv-select/tests/input_3x2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/input_3x2.tsv -------------------------------------------------------------------------------- /tsv-select/tests/input_3x3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/input_3x3.tsv -------------------------------------------------------------------------------- /tsv-select/tests/input_8xlong.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/input_8xlong.tsv -------------------------------------------------------------------------------- /tsv-select/tests/input_emptyfile.tsv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsv-select/tests/input_header1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/input_header1.tsv -------------------------------------------------------------------------------- /tsv-select/tests/input_header2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/input_header2.tsv -------------------------------------------------------------------------------- /tsv-select/tests/input_header3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/input_header3.tsv -------------------------------------------------------------------------------- /tsv-select/tests/input_header4.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/input_header4.tsv -------------------------------------------------------------------------------- /tsv-select/tests/input_header_variants.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/input_header_variants.tsv -------------------------------------------------------------------------------- /tsv-select/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-select/tests/tests.sh -------------------------------------------------------------------------------- /tsv-split/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/README.md -------------------------------------------------------------------------------- /tsv-split/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/dub.json -------------------------------------------------------------------------------- /tsv-split/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/makefile -------------------------------------------------------------------------------- /tsv-split/profile_data/collect_profile_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/profile_data/collect_profile_data.sh -------------------------------------------------------------------------------- /tsv-split/profile_data/profile_data_1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/profile_data/profile_data_1.tsv -------------------------------------------------------------------------------- /tsv-split/profile_data/profile_data_2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/profile_data/profile_data_2.tsv -------------------------------------------------------------------------------- /tsv-split/profile_data/profile_data_3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/profile_data/profile_data_3.tsv -------------------------------------------------------------------------------- /tsv-split/src/tsv_utils/tsv-split.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/src/tsv_utils/tsv-split.d -------------------------------------------------------------------------------- /tsv-split/tests/empty-file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsv-split/tests/gold/error_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/tests/gold/error_tests_1.txt -------------------------------------------------------------------------------- /tsv-split/tests/gold/help_and_version_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/tests/gold/help_and_version_tests.txt -------------------------------------------------------------------------------- /tsv-split/tests/gold/key_assignment_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/tests/gold/key_assignment_tests.txt -------------------------------------------------------------------------------- /tsv-split/tests/gold/lines_per_file_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/tests/gold/lines_per_file_tests.txt -------------------------------------------------------------------------------- /tsv-split/tests/gold/random_assignment_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/tests/gold/random_assignment_tests.txt -------------------------------------------------------------------------------- /tsv-split/tests/input1x3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/tests/input1x3.txt -------------------------------------------------------------------------------- /tsv-split/tests/input1x5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/tests/input1x5.txt -------------------------------------------------------------------------------- /tsv-split/tests/input4x18.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/tests/input4x18.tsv -------------------------------------------------------------------------------- /tsv-split/tests/input4x58.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/tests/input4x58.tsv -------------------------------------------------------------------------------- /tsv-split/tests/input4x58_colon-delim.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/tests/input4x58_colon-delim.tsv -------------------------------------------------------------------------------- /tsv-split/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-split/tests/tests.sh -------------------------------------------------------------------------------- /tsv-summarize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/README.md -------------------------------------------------------------------------------- /tsv-summarize/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/dub.json -------------------------------------------------------------------------------- /tsv-summarize/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/makefile -------------------------------------------------------------------------------- /tsv-summarize/profile_data/collect_profile_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/profile_data/collect_profile_data.sh -------------------------------------------------------------------------------- /tsv-summarize/profile_data/profile_data_1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/profile_data/profile_data_1.tsv -------------------------------------------------------------------------------- /tsv-summarize/profile_data/profile_data_2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/profile_data/profile_data_2.tsv -------------------------------------------------------------------------------- /tsv-summarize/profile_data/profile_data_3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/profile_data/profile_data_3.tsv -------------------------------------------------------------------------------- /tsv-summarize/src/tsv_utils/tsv-summarize.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/src/tsv_utils/tsv-summarize.d -------------------------------------------------------------------------------- /tsv-summarize/tests/empty_file.tsv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsv-summarize/tests/gold/basic_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/gold/basic_tests_1.txt -------------------------------------------------------------------------------- /tsv-summarize/tests/gold/error_tests_1.2081.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/gold/error_tests_1.2081.txt -------------------------------------------------------------------------------- /tsv-summarize/tests/gold/error_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/gold/error_tests_1.txt -------------------------------------------------------------------------------- /tsv-summarize/tests/input_1field_a.dos_tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/input_1field_a.dos_tsv -------------------------------------------------------------------------------- /tsv-summarize/tests/input_1field_a.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/input_1field_a.tsv -------------------------------------------------------------------------------- /tsv-summarize/tests/input_1field_b.tsv: -------------------------------------------------------------------------------- 1 | size 2 | 9 3 | medium 4 | 10 5 | -------------------------------------------------------------------------------- /tsv-summarize/tests/input_2field_a.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/input_2field_a.tsv -------------------------------------------------------------------------------- /tsv-summarize/tests/input_2field_b.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/input_2field_b.tsv -------------------------------------------------------------------------------- /tsv-summarize/tests/input_5field_a.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/input_5field_a.tsv -------------------------------------------------------------------------------- /tsv-summarize/tests/input_5field_b.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/input_5field_b.tsv -------------------------------------------------------------------------------- /tsv-summarize/tests/input_5field_c.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/input_5field_c.tsv -------------------------------------------------------------------------------- /tsv-summarize/tests/input_5field_d.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/input_5field_d.tsv -------------------------------------------------------------------------------- /tsv-summarize/tests/input_5field_header_only.tsv: -------------------------------------------------------------------------------- 1 | color pattern length width height 2 | -------------------------------------------------------------------------------- /tsv-summarize/tests/test-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/test-config.json -------------------------------------------------------------------------------- /tsv-summarize/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-summarize/tests/tests.sh -------------------------------------------------------------------------------- /tsv-uniq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/README.md -------------------------------------------------------------------------------- /tsv-uniq/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/dub.json -------------------------------------------------------------------------------- /tsv-uniq/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/makefile -------------------------------------------------------------------------------- /tsv-uniq/profile_data/collect_profile_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/profile_data/collect_profile_data.sh -------------------------------------------------------------------------------- /tsv-uniq/profile_data/profile_data_1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/profile_data/profile_data_1.tsv -------------------------------------------------------------------------------- /tsv-uniq/profile_data/profile_data_2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/profile_data/profile_data_2.tsv -------------------------------------------------------------------------------- /tsv-uniq/profile_data/profile_data_3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/profile_data/profile_data_3.tsv -------------------------------------------------------------------------------- /tsv-uniq/src/tsv_utils/tsv-uniq.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/src/tsv_utils/tsv-uniq.d -------------------------------------------------------------------------------- /tsv-uniq/tests/empty-file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsv-uniq/tests/gold/basic_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/tests/gold/basic_tests_1.txt -------------------------------------------------------------------------------- /tsv-uniq/tests/gold/error_tests_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/tests/gold/error_tests_1.txt -------------------------------------------------------------------------------- /tsv-uniq/tests/input1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/tests/input1.tsv -------------------------------------------------------------------------------- /tsv-uniq/tests/input1_noheader.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/tests/input1_noheader.tsv -------------------------------------------------------------------------------- /tsv-uniq/tests/input2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/tests/input2.tsv -------------------------------------------------------------------------------- /tsv-uniq/tests/input3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/tests/input3.tsv -------------------------------------------------------------------------------- /tsv-uniq/tests/input_delim_underscore.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/tests/input_delim_underscore.tsv -------------------------------------------------------------------------------- /tsv-uniq/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eBay/tsv-utils/HEAD/tsv-uniq/tests/tests.sh --------------------------------------------------------------------------------