Skip to content

Commit 393cfad

Browse files
committed
commiting to main
1 parent 72e3344 commit 393cfad

File tree

91 files changed

+43
-50
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+43
-50
lines changed

jsonjoin.1.md

+1-1

make.bat

+39-46
Original file line numberDiff line numberDiff line change
@@ -6,43 +6,39 @@ REM It requires: go version 1.16.6 or better and the cli for git installed
66
REM
77
go version
88
mkdir bin
9-
echo off
10-
echo Getting ready to build the datatools in bin
11-
echo on
12-
go build -o bin\codemeta2cff.exe cmd\codemeta2cff\codemeta2cff.go
13-
go build -o bin\csv2json.exe cmd\csv2json\csv2json.go
14-
go build -o bin\csv2mdtable.exe cmd\csv2mdtable\csv2mdtable.go
15-
go build -o bin\csv2tab.exe cmd\csv2tab\csv2tab.go
16-
go build -o bin\csv2xlsx.exe cmd\csv2xlsx\csv2xlsx.go
17-
go build -o bin\csvcleaner.exe cmd\csvcleaner\csvcleaner.go
18-
go build -o bin\csvcols.exe cmd\csvcols\csvcols.go
19-
go build -o bin\csvfind.exe cmd\csvfind\csvfind.go
20-
go build -o bin\csvjoin.exe cmd\csvjoin\csvjoin.go
21-
go build -o bin\csvrows.exe cmd\csvrows\csvrows.go
22-
go build -o bin\finddir.exe cmd\finddir\finddir.go
23-
go build -o bin\findfile.exe cmd\findfile\findfile.go
24-
go build -o bin\json2toml.exe cmd\json2toml\json2toml.go
25-
go build -o bin\json2yaml.exe cmd\json2yaml\json2yaml.go
26-
go build -o bin\jsoncols.exe cmd\jsoncols\jsoncols.go
27-
go build -o bin\jsonjoin.exe cmd\jsonjoin\jsonjoin.go
28-
go build -o bin\jsonmunge.exe cmd\jsonmunge\jsonmunge.go
29-
go build -o bin\jsonrange.exe cmd\jsonrange\jsonrange.go
30-
go build -o bin\mergepath.exe cmd\mergepath\mergepath.go
31-
go build -o bin\range.exe cmd\range\range.go
32-
go build -o bin\reldate.exe cmd\reldate\reldate.go
33-
go build -o bin\reltime.exe cmd\reltime\reltime.go
34-
go build -o bin\sql2csv.exe cmd\sql2csv\sql2csv.go
35-
go build -o bin\string.exe cmd\string\string.go
36-
go build -o bin\tab2csv.exe cmd\tab2csv\tab2csv.go
37-
go build -o bin\timefmt.exe cmd\timefmt\timefmt.go
38-
go build -o bin\toml2json.exe cmd\toml2json\toml2json.go
39-
go build -o bin\urlparse.exe cmd\urlparse\urlparse.go
40-
go build -o bin\xlsx2csv.exe cmd\xlsx2csv\xlsx2csv.go
41-
go build -o bin\xlsx2json.exe cmd\xlsx2json\xlsx2json.go
42-
go build -o bin\yaml2json.exe cmd\yaml2json\yaml2json.go
43-
echo off
44-
echo Checking compile should see version number of dataset
45-
echo on
9+
echo "Getting ready to build the datatools in bin"
10+
go build -o bin\codemeta2cff.exe cmd\codemeta2cff\codemeta2cff.exe
11+
go build -o bin\csv2json.exe cmd\csv2json\csv2json.exe
12+
go build -o bin\csv2mdtable.exe cmd\csv2mdtable\csv2mdtable.exe
13+
go build -o bin\csv2tab.exe cmd\csv2tab\csv2tab.exe
14+
go build -o bin\csv2xlsx.exe cmd\csv2xlsx\csv2xlsx.exe
15+
go build -o bin\csvcleaner.exe cmd\csvcleaner\csvcleaner.exe
16+
go build -o bin\csvcols.exe cmd\csvcols\csvcols.exe
17+
go build -o bin\csvfind.exe cmd\csvfind\csvfind.exe
18+
go build -o bin\csvjoin.exe cmd\csvjoin\csvjoin.exe
19+
go build -o bin\csvrows.exe cmd\csvrows\csvrows.exe
20+
go build -o bin\finddir.exe cmd\finddir\finddir.exe
21+
go build -o bin\findfile.exe cmd\findfile\findfile.exe
22+
go build -o bin\json2toml.exe cmd\json2toml\json2toml.exe
23+
go build -o bin\json2yaml.exe cmd\json2yaml\json2yaml.exe
24+
go build -o bin\jsoncols.exe cmd\jsoncols\jsoncols.exe
25+
go build -o bin\jsonjoin.exe cmd\jsonjoin\jsonjoin.exe
26+
go build -o bin\jsonmunge.exe cmd\jsonmunge\jsonmunge.exe
27+
go build -o bin\jsonrange.exe cmd\jsonrange\jsonrange.exe
28+
go build -o bin\mergepath.exe cmd\mergepath\mergepath.exe
29+
go build -o bin\range.exe cmd\range\range.exe
30+
go build -o bin\reldate.exe cmd\reldate\reldate.exe
31+
go build -o bin\reltime.exe cmd\reltime\reltime.exe
32+
go build -o bin\sql2csv.exe cmd\sql2csv\sql2csv.exe
33+
go build -o bin\string.exe cmd\string\string.exe
34+
go build -o bin\tab2csv.exe cmd\tab2csv\tab2csv.exe
35+
go build -o bin\timefmt.exe cmd\timefmt\timefmt.exe
36+
go build -o bin\toml2json.exe cmd\toml2json\toml2json.exe
37+
go build -o bin\urlparse.exe cmd\urlparse\urlparse.exe
38+
go build -o bin\xlsx2csv.exe cmd\xlsx2csv\xlsx2csv.exe
39+
go build -o bin\xlsx2json.exe cmd\xlsx2json\xlsx2json.exe
40+
go build -o bin\yaml2json.exe cmd\yaml2json\yaml2json.exe
41+
echo "Checking compile should see version number of dataset"
4642
bin\codemeta2cff.exe -version
4743
bin\csv2json.exe -version
4844
bin\csv2mdtable.exe -version
@@ -74,12 +70,9 @@ bin\urlparse.exe -version
7470
bin\xlsx2csv.exe -version
7571
bin\xlsx2json.exe -version
7672
bin\yaml2json.exe -version
77-
echo off
78-
echo If OK, you can now copy the dataset.exe to %USERPROFILE%\go\bin in
79-
echo off
80-
echo copy bin\* %USERPROFILE%\AppData\go\bin
81-
echo off
82-
echo or someplace else in your PATH
83-
echo off
84-
echo %PATH%
85-
echo on
73+
echo "If OK, you can now copy the dataset.exe to %USERPROFILE%\goin"
74+
echo ""
75+
echo " copy bin\* %USERPROFILE%\AppData\go\bin"
76+
""
77+
echo "or someplace else in your %PATH%"
78+
""

man/man1/jsonjoin.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Automatically generated by Pandoc 3.1.12
22
.\"
3-
.TH "jsonjoin" "1" "2024\-02\-26" "user manual" "version 1.2.6 37d64be"
3+
.TH "jsonjoin" "1" "2024\-02\-26" "user manual" "version 1.2.6 72e3344"
44
.SH NAME
55
jsonjoin
66
.SH SYNOPSIS
1.35 KB
Binary file not shown.
848 Bytes
Binary file not shown.
560 Bytes
Binary file not shown.
272 Bytes
Binary file not shown.
367 Bytes
Binary file not shown.
390 Bytes
Binary file not shown.
993 Bytes
Binary file not shown.
738 Bytes
Binary file not shown.
1.05 KB
Binary file not shown.
1.24 KB
Binary file not shown.
796 Bytes
Binary file not shown.
816 Bytes
Binary file not shown.
375 Bytes
Binary file not shown.
312 Bytes
Binary file not shown.
561 Bytes
Binary file not shown.
672 Bytes
Binary file not shown.
866 Bytes
Binary file not shown.
860 Bytes
Binary file not shown.
448 Bytes
Binary file not shown.
1.06 KB
Binary file not shown.
407 Bytes
Binary file not shown.
368 Bytes
Binary file not shown.
565 Bytes
Binary file not shown.
394 Bytes
Binary file not shown.
611 Bytes
Binary file not shown.
1.1 KB
Binary file not shown.
388 Bytes
Binary file not shown.
456 Bytes
Binary file not shown.
441 Bytes
Binary file not shown.
355 Bytes
Binary file not shown.
1.02 KB
Binary file not shown.
411 Bytes
Binary file not shown.
682 Bytes
Binary file not shown.
407 Bytes
Binary file not shown.
739 Bytes
Binary file not shown.
1.36 KB
Binary file not shown.
343 Bytes
Binary file not shown.
976 Bytes
Binary file not shown.
357 Bytes
Binary file not shown.
413 Bytes
Binary file not shown.
385 Bytes
Binary file not shown.
476 Bytes
Binary file not shown.
392 Bytes
Binary file not shown.
406 Bytes
Binary file not shown.
154 Bytes
Binary file not shown.
246 Bytes
Binary file not shown.
497 Bytes
Binary file not shown.
734 Bytes
Binary file not shown.
406 Bytes
Binary file not shown.
527 Bytes
Binary file not shown.
484 Bytes
Binary file not shown.
712 Bytes
Binary file not shown.
491 Bytes
Binary file not shown.
447 Bytes
Binary file not shown.
755 Bytes
Binary file not shown.
386 Bytes
Binary file not shown.
390 Bytes
Binary file not shown.
747 Bytes
Binary file not shown.
1.39 KB
Binary file not shown.
561 Bytes
Binary file not shown.
369 Bytes
Binary file not shown.
254 Bytes
Binary file not shown.
379 Bytes
Binary file not shown.
391 Bytes
Binary file not shown.
412 Bytes
Binary file not shown.
408 Bytes
Binary file not shown.
405 Bytes
Binary file not shown.
563 Bytes
Binary file not shown.
611 Bytes
Binary file not shown.
519 Bytes
Binary file not shown.
323 Bytes
Binary file not shown.
556 Bytes
Binary file not shown.
750 Bytes
Binary file not shown.
385 Bytes
Binary file not shown.
962 Bytes
Binary file not shown.
383 Bytes
Binary file not shown.
451 Bytes
Binary file not shown.
383 Bytes
Binary file not shown.
704 Bytes
Binary file not shown.
499 Bytes
Binary file not shown.
313 Bytes
Binary file not shown.
25.1 KB
Binary file not shown.
25 KB
Binary file not shown.
9.78 KB
Binary file not shown.
24.8 KB
Binary file not shown.

pagefind/pagefind-entry.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"1.0.4","languages":{"unknown":{"hash":"unknown_d4cc11affe65b92","wasm":null,"page_count":118}}}
1+
{"version":"1.0.4","languages":{"unknown":{"hash":"unknown_7ca3eb45387e94e","wasm":null,"page_count":199}}}
Binary file not shown.

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const (
1212
ReleaseDate = "2024-02-26"
1313

1414
// ReleaseHash, the Git hash when version.go was generated
15-
ReleaseHash = "a974edf"
15+
ReleaseHash = "72e3344"
1616

1717
LicenseText = `
1818
Copyright (c) 2023, Caltech All rights not granted herein are expressly

0 commit comments

Comments
 (0)