Skip to content

Commit c44785e

Browse files
committed
orcli v0.4.1
1 parent 05cb052 commit c44785e

File tree

6 files changed

+28
-24
lines changed

6 files changed

+28
-24
lines changed

help/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# orcli 0.4.0
1+
# orcli 0.4.1
22

33
## command help screens
44

@@ -67,10 +67,10 @@ Examples:
6767
orcli delete "duplicates"
6868
orcli run --interactive
6969
orcli run << EOF
70-
orcli import csv "https://git.io/fj5hF" --projectName "duplicates"
71-
orcli transform "duplicates" "https://git.io/fj5ju"
72-
orcli export tsv "duplicates"
73-
EOF
70+
orcli import csv "https://git.io/fj5hF" --projectName "duplicates"
71+
orcli transform "duplicates" "https://git.io/fj5ju"
72+
orcli export tsv "duplicates"
73+
EOF
7474
7575
https://github.com/opencultureconsulting/orcli
7676

help/import_csv.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Options:
1818
--columnNames COLUMNNAMES
1919
set column names (comma separated)
2020
hint: add --ignoreLines 1 to overwrite existing header row
21+
Conflicts: --headerLines
2122
2223
--encoding ENCODING
2324
set character encoding
@@ -28,6 +29,7 @@ Options:
2829
--headerLines HEADERLINES
2930
parse x line(s) as column headers
3031
Default: 1
32+
Conflicts: --columnNames
3133
3234
--ignoreLines IGNORELINES
3335
ignore first x line(s) at beginning of file
@@ -48,7 +50,7 @@ Options:
4850
4951
--quoteCharacter QUOTECHARACTER
5052
quote character to enclose cells containing column separators
51-
Default: "
53+
Default: \"
5254
5355
--skipBlankRows
5456
do not store blank rows

help/import_tsv.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Options:
1414
--columnNames COLUMNNAMES
1515
set column names (comma separated)
1616
hint: add --ignoreLines 1 to overwrite existing header row
17+
Conflicts: --headerLines
1718
1819
--encoding ENCODING
1920
set character encoding
@@ -24,6 +25,7 @@ Options:
2425
--headerLines HEADERLINES
2526
parse x line(s) as column headers
2627
Default: 1
28+
Conflicts: --columnNames
2729
2830
--ignoreLines IGNORELINES
2931
ignore first x line(s) at beginning of file
@@ -44,7 +46,7 @@ Options:
4446
4547
--quoteCharacter QUOTECHARACTER
4648
quote character to enclose cells containing column separators
47-
Default: "
49+
Default: \"
4850
4951
--skipBlankRows
5052
do not store blank rows

help/run.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,23 @@ Arguments:
3333
Examples:
3434
orcli run --interactive
3535
orcli run << EOF
36-
orcli import csv "https://git.io/fj5hF" --projectName "duplicates"
37-
orcli transform "duplicates" "https://git.io/fj5ju"
38-
orcli export tsv "duplicates"
39-
EOF
36+
orcli import csv "https://git.io/fj5hF" --projectName "duplicates"
37+
orcli transform "duplicates" "https://git.io/fj5ju"
38+
orcli export tsv "duplicates"
39+
EOF
4040
orcli run --memory "2000M" --port "3334" << EOF
41-
orcli import csv "https://git.io/fj5hF" --projectName "duplicates" &
42-
orcli import csv "https://git.io/fj5hF" --projectName "copy" &
43-
wait
44-
echo "finished import"
45-
orcli export csv "duplicates" --output duplicates.csv &
46-
orcli export tsv "duplicates" --output duplicates.tsv &
47-
wait
48-
wc duplicates*
49-
EOF
41+
orcli import csv "https://git.io/fj5hF" --projectName "duplicates" &
42+
orcli import csv "https://git.io/fj5hF" --projectName "copy" &
43+
wait
44+
echo "finished import"
45+
orcli export csv "duplicates" --output duplicates.csv &
46+
orcli export tsv "duplicates" --output duplicates.tsv &
47+
wait
48+
wc duplicates*
49+
EOF
5050
orcli run --interactive "file1.sh" "file2.sh" - << EOF
51-
echo "finished in $SECONDS seconds"
52-
EOF
51+
echo "finished in $SECONDS seconds"
52+
EOF
5353
5454
```
5555

orcli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5178,7 +5178,7 @@ orcli_run_parse_requirements() {
51785178

51795179
# :command.initialize
51805180
initialize() {
5181-
version="0.4.0"
5181+
version="0.4.1"
51825182
long_usage=''
51835183
set -e
51845184

src/bashly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: orcli
22
help: OpenRefine command-line interface written in Bash
3-
version: 0.4.0
3+
version: 0.4.1
44
footer: https://github.com/opencultureconsulting/orcli
55

66
dependencies:

0 commit comments

Comments
 (0)