Skip to content

Commit

Permalink
orcli v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
felixlohmeier committed Dec 19, 2024
1 parent 05cb052 commit c44785e
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 24 deletions.
10 changes: 5 additions & 5 deletions help/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# orcli 0.4.0
# orcli 0.4.1

## command help screens

Expand Down Expand Up @@ -67,10 +67,10 @@ Examples:
orcli delete "duplicates"
orcli run --interactive
orcli run << EOF
orcli import csv "https://git.io/fj5hF" --projectName "duplicates"
orcli transform "duplicates" "https://git.io/fj5ju"
orcli export tsv "duplicates"
EOF
orcli import csv "https://git.io/fj5hF" --projectName "duplicates"
orcli transform "duplicates" "https://git.io/fj5ju"
orcli export tsv "duplicates"
EOF
https://github.com/opencultureconsulting/orcli
Expand Down
4 changes: 3 additions & 1 deletion help/import_csv.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Options:
--columnNames COLUMNNAMES
set column names (comma separated)
hint: add --ignoreLines 1 to overwrite existing header row
Conflicts: --headerLines
--encoding ENCODING
set character encoding
Expand All @@ -28,6 +29,7 @@ Options:
--headerLines HEADERLINES
parse x line(s) as column headers
Default: 1
Conflicts: --columnNames
--ignoreLines IGNORELINES
ignore first x line(s) at beginning of file
Expand All @@ -48,7 +50,7 @@ Options:
--quoteCharacter QUOTECHARACTER
quote character to enclose cells containing column separators
Default: "
Default: \"
--skipBlankRows
do not store blank rows
Expand Down
4 changes: 3 additions & 1 deletion help/import_tsv.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Options:
--columnNames COLUMNNAMES
set column names (comma separated)
hint: add --ignoreLines 1 to overwrite existing header row
Conflicts: --headerLines
--encoding ENCODING
set character encoding
Expand All @@ -24,6 +25,7 @@ Options:
--headerLines HEADERLINES
parse x line(s) as column headers
Default: 1
Conflicts: --columnNames
--ignoreLines IGNORELINES
ignore first x line(s) at beginning of file
Expand All @@ -44,7 +46,7 @@ Options:
--quoteCharacter QUOTECHARACTER
quote character to enclose cells containing column separators
Default: "
Default: \"
--skipBlankRows
do not store blank rows
Expand Down
30 changes: 15 additions & 15 deletions help/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,23 @@ Arguments:
Examples:
orcli run --interactive
orcli run << EOF
orcli import csv "https://git.io/fj5hF" --projectName "duplicates"
orcli transform "duplicates" "https://git.io/fj5ju"
orcli export tsv "duplicates"
EOF
orcli import csv "https://git.io/fj5hF" --projectName "duplicates"
orcli transform "duplicates" "https://git.io/fj5ju"
orcli export tsv "duplicates"
EOF
orcli run --memory "2000M" --port "3334" << EOF
orcli import csv "https://git.io/fj5hF" --projectName "duplicates" &
orcli import csv "https://git.io/fj5hF" --projectName "copy" &
wait
echo "finished import"
orcli export csv "duplicates" --output duplicates.csv &
orcli export tsv "duplicates" --output duplicates.tsv &
wait
wc duplicates*
EOF
orcli import csv "https://git.io/fj5hF" --projectName "duplicates" &
orcli import csv "https://git.io/fj5hF" --projectName "copy" &
wait
echo "finished import"
orcli export csv "duplicates" --output duplicates.csv &
orcli export tsv "duplicates" --output duplicates.tsv &
wait
wc duplicates*
EOF
orcli run --interactive "file1.sh" "file2.sh" - << EOF
echo "finished in $SECONDS seconds"
EOF
echo "finished in $SECONDS seconds"
EOF
```

Expand Down
2 changes: 1 addition & 1 deletion orcli
Original file line number Diff line number Diff line change
Expand Up @@ -5178,7 +5178,7 @@ orcli_run_parse_requirements() {

# :command.initialize
initialize() {
version="0.4.0"
version="0.4.1"
long_usage=''
set -e

Expand Down
2 changes: 1 addition & 1 deletion src/bashly.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: orcli
help: OpenRefine command-line interface written in Bash
version: 0.4.0
version: 0.4.1
footer: https://github.com/opencultureconsulting/orcli

dependencies:
Expand Down

0 comments on commit c44785e

Please sign in to comment.