wcc 1.0.10

this is my own version of wc for personal use
# WORD COUNTER

this is my own version of wc for personal use

### Usage

word count
```bash
wcc "hello world"
```

```bash
wcc "$(ls)"
```

disable echo and label
```bash
wcc -e "hello world"
```

line count
```bash
wcc -l "hello\nworld"
```

```bash
wcc -l "$(ls)"
```

```bash
wcc -l "hello
world"
```