wd 0.1.0

wd - a command line tool for print specified position of words
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# wd

wd - a command line tool for print specified position of words

*Inpired by https://github.com/onsd/wd*

## Usage

```sh
echo "a b c" | wd -n 1 2
# a b
echo "a b c" | wd -n 1 3
# a c
```