summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Geary <rtgnj42@gmail.com>2020-06-02 15:09:00 -0400
committerRyan Geary <rtgnj42@gmail.com>2020-06-02 15:09:00 -0400
commit5d65fb99ce8768608e78c81a7fe4c87c15f56192 (patch)
tree3ba5b7c432fe85fd3d13ab36a9bdd49d27496d09
parent588ff3ef1b6aca0d9cde993062ec9e6526bc0081 (diff)
Add updated documentationv1.1.1
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--readme.md18
3 files changed, 14 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b1052a5..971da7f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -32,7 +32,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "choose"
-version = "1.1.0"
+version = "1.1.1"
dependencies = [
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index 2501f5b..c8ebb5c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "choose"
-version = "1.1.0"
+version = "1.1.1"
authors = ["Ryan Geary <rtgnj42@gmail.com>"]
edition = "2018"
diff --git a/readme.md b/readme.md
index 3ba4449..39c8429 100644
--- a/readme.md
+++ b/readme.md
@@ -39,20 +39,26 @@ necessary.
```
$ choose --help
-choose 0.1.4
+choose 1.1.1
`choose` sections from each line of files
USAGE:
choose [FLAGS] [OPTIONS] <choice>...
FLAGS:
- -x, --exclusive Use exclusive ranges, similar to array indexing in many programming languages
- -h, --help Prints help information
- -V, --version Prints version information
+ -c, --character-wise Choose fields by character number
+ -d, --debug Activate debug mode
+ -x, --exclusive Use exclusive ranges, similar to array indexing in many programming languages
+ -h, --help Prints help information
+ -n, --non-greedy Use non-greedy field separators
+ -V, --version Prints version information
OPTIONS:
- -f, --field-separator <field-separator> Specify field separator other than whitespace, using Rust `regex` syntax
- -i, --input <input> Input file
+ -f, --field-separator <field-separator>
+ Specify field separator other than whitespace, using Rust `regex` syntax
+
+ -i, --input <input> Input file
+ -o, --output-field-separator <output-field-separator> Specify output field separator
ARGS:
<choice>... Fields to print. Either x, x:, :y, or x:y, where x and y are integers, colons indicate a range,