Skip to content

Commit 97ea9b8

Browse files
committed
Quick Save
1 parent 37b54a0 commit 97ea9b8

File tree

2 files changed

+20
-43
lines changed

2 files changed

+20
-43
lines changed

README.md

+10-23
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11

22
# datatools
33

4-
Command line utilities for simplifying work with CSV, JSON, Excel Workbooks and plain text files or content. It also now includes
5-
shelltools which are utilities useful for shell scripting.
4+
Command line utilities for simplifying work with CSV, JSON, Excel Workbooks and plain text files or content and
5+
general purpose shell scripting.
66

7-
+ [csvcols](docs/csvcols.html) - a tool for formatting command line arguments into CSV row of columns or filtering CSV rows for specific columns
8-
+ [csvrows](docs/csvrows.html) - a tool for formatting command line arguments into CSV columns of rows or filtering CSV columns for specific rows
9-
+ [csvfind](docs/csvfind.html) - a tool for filtering a CSV file by column's value
10-
+ [csvjoin](docs/csvjoin.html) - a tool to join to CSV files on common values in designated columns, writes combined CSV rows to stdout
117
+ [csv2json](docs/csv2json.html) - a tool to take a CSV file and convert it into a JSON blob array or a list of JSON blobs one per line
128
+ [csv2mdtable](docs/csv2mdtable.html) - a tool to render CSV as a Github Flavored Markdown table
139
+ [csv2xlsx](docs/csv2xlsx.html) - a tool to take a CSV file and add it as a sheet to a Excel Workbook file.
10+
+ [csvcols](docs/csvcols.html) - a tool for formatting command line arguments into CSV row of columns or filtering CSV rows for specific columns
11+
+ [csvfind](docs/csvfind.html) - a tool for filtering a CSV file by column's value
12+
+ [csvjoin](docs/csvjoin.html) - a tool to join to CSV files on common values in designated columns, writes combined CSV rows to stdout
13+
+ [csvrows](docs/csvrows.html) - a tool for formatting command line arguments into CSV columns of rows or filtering CSV columns for specific rows
1414
+ [jsoncols](docs/jsoncols.html) - a tool for exploring and extracting JSON values into columns
1515
+ [jsonjoin](docs/jsonjoin.html) - a tool for joining JSON object documents
1616
+ [jsonmunge](docs/jsonmunge.html) - a tool to transform JSON documents into something else
@@ -26,20 +26,7 @@ Windows 10 (amd64) and Raspbian (ARM7). See https://github.com/caltechlibrary/da
2626
Use the utilities try "-help" option for a full list of options.
2727

2828

29-
## Installation
30-
31-
_datatools_ is go get-able.
32-
33-
```
34-
go get github.com/caltechlibrary/datatools/...
35-
```
36-
37-
Or see [INSTALL.md](install.html) for details for installing
38-
compiled versions of the programs.
39-
40-
41-
42-
## shelltools
29+
## For scripting
4330

4431
Various utilities for simplifying work on the command line.
4532

@@ -52,17 +39,17 @@ Various utilities for simplifying work on the command line.
5239
+ [urlparse](docs/urlparse.html) - split a URL into parts
5340

5441
Compiled versions are provided for Linux (amd64), Mac OS X (amd64),
55-
Windows 10 (amd64) and Raspbian (ARM7). See https://github.com/caltechlibrary/shelltools/releases.
42+
Windows 10 (amd64) and Raspbian (ARM7). See https://github.com/caltechlibrary/datatools/releases.
5643

5744
Use the utilities try "-help" option for a full list of options.
5845

5946

6047
## Installation
6148

62-
_shelltools_ is go get-able.
49+
_datatools_ is go get-able.
6350

6451
```
65-
go get github.com/caltechlibrary/shelltools/...
52+
go get github.com/caltechlibrary/datatools/...
6653
```
6754

6855
Or see [INSTALL.md](install.html) for details for installing

index.html

+10-20
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@
2525
<section>
2626
<h1>datatools</h1>
2727

28-
<p>Command line utilities for simplifying work with CSV, JSON, Excel Workbooks and plain text files or content. It also now includes
29-
shelltools which are utilities useful for shell scripting.</p>
28+
<p>Command line utilities for simplifying work with CSV, JSON, Excel Workbooks and plain text files or content and
29+
general purpose shell scripting.</p>
3030

3131
<ul>
32-
<li><a href="docs/csvcols.html">csvcols</a> - a tool for formatting command line arguments into CSV row of columns or filtering CSV rows for specific columns</li>
33-
<li><a href="docs/csvrows.html">csvrows</a> - a tool for formatting command line arguments into CSV columns of rows or filtering CSV columns for specific rows</li>
34-
<li><a href="docs/csvfind.html">csvfind</a> - a tool for filtering a CSV file by column&rsquo;s value</li>
35-
<li><a href="docs/csvjoin.html">csvjoin</a> - a tool to join to CSV files on common values in designated columns, writes combined CSV rows to stdout</li>
3632
<li><a href="docs/csv2json.html">csv2json</a> - a tool to take a CSV file and convert it into a JSON blob array or a list of JSON blobs one per line</li>
3733
<li><a href="docs/csv2mdtable.html">csv2mdtable</a> - a tool to render CSV as a Github Flavored Markdown table</li>
3834
<li><a href="docs/csv2xlsx.html">csv2xlsx</a> - a tool to take a CSV file and add it as a sheet to a Excel Workbook file.</li>
35+
<li><a href="docs/csvcols.html">csvcols</a> - a tool for formatting command line arguments into CSV row of columns or filtering CSV rows for specific columns</li>
36+
<li><a href="docs/csvfind.html">csvfind</a> - a tool for filtering a CSV file by column&rsquo;s value</li>
37+
<li><a href="docs/csvjoin.html">csvjoin</a> - a tool to join to CSV files on common values in designated columns, writes combined CSV rows to stdout</li>
38+
<li><a href="docs/csvrows.html">csvrows</a> - a tool for formatting command line arguments into CSV columns of rows or filtering CSV columns for specific rows</li>
3939
<li><a href="docs/jsoncols.html">jsoncols</a> - a tool for exploring and extracting JSON values into columns</li>
4040
<li><a href="docs/jsonjoin.html">jsonjoin</a> - a tool for joining JSON object documents</li>
4141
<li><a href="docs/jsonmunge.html">jsonmunge</a> - a tool to transform JSON documents into something else</li>
@@ -50,17 +50,7 @@ <h1>datatools</h1>
5050

5151
<p>Use the utilities try &ldquo;-help&rdquo; option for a full list of options.</p>
5252

53-
<h2>Installation</h2>
54-
55-
<p><em>datatools</em> is go get-able.</p>
56-
57-
<pre><code> go get github.com/caltechlibrary/datatools/...
58-
</code></pre>
59-
60-
<p>Or see <a href="install.html">INSTALL.md</a> for details for installing
61-
compiled versions of the programs.</p>
62-
63-
<h2>shelltools</h2>
53+
<h2>For scripting</h2>
6454

6555
<p>Various utilities for simplifying work on the command line.</p>
6656

@@ -75,15 +65,15 @@ <h2>shelltools</h2>
7565
</ul>
7666

7767
<p>Compiled versions are provided for Linux (amd64), Mac OS X (amd64),
78-
Windows 10 (amd64) and Raspbian (ARM7). See <a href="https://github.com/caltechlibrary/shelltools/releases">https://github.com/caltechlibrary/shelltools/releases</a>.</p>
68+
Windows 10 (amd64) and Raspbian (ARM7). See <a href="https://github.com/caltechlibrary/datatools/releases">https://github.com/caltechlibrary/datatools/releases</a>.</p>
7969

8070
<p>Use the utilities try &ldquo;-help&rdquo; option for a full list of options.</p>
8171

8272
<h2>Installation</h2>
8373

84-
<p><em>shelltools</em> is go get-able.</p>
74+
<p><em>datatools</em> is go get-able.</p>
8575

86-
<pre><code> go get github.com/caltechlibrary/shelltools/...
76+
<pre><code> go get github.com/caltechlibrary/datatools/...
8777
</code></pre>
8878

8979
<p>Or see <a href="install.html">INSTALL.md</a> for details for installing

0 commit comments

Comments
 (0)