2019-11-10 10:11:23 +01:00
|
|
|
# size
|
|
|
|
|
|
|
|
This commands gives word count statistics on any text.
|
|
|
|
|
2020-06-23 20:21:47 +02:00
|
|
|
## Examples
|
2019-11-10 10:11:23 +01:00
|
|
|
|
|
|
|
```shell
|
|
|
|
> open lalala.txt | size
|
|
|
|
━━━━━━━┯━━━━━━━┯━━━━━━━┯━━━━━━━━━━━━
|
2020-09-01 04:51:35 +02:00
|
|
|
lines │ words │ chars │ bytes
|
2019-11-10 10:11:23 +01:00
|
|
|
───────┼───────┼───────┼────────────
|
2020-03-13 18:23:41 +01:00
|
|
|
4 │ 10 │ 72 │ 72
|
2019-11-10 10:11:23 +01:00
|
|
|
━━━━━━━┷━━━━━━━┷━━━━━━━┷━━━━━━━━━━━━
|
2020-06-23 20:21:47 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
```shell
|
2019-11-10 10:11:23 +01:00
|
|
|
> open the_mysterious_affair_at_styles.txt | size
|
|
|
|
━━━━━━━┯━━━━━━━┯━━━━━━━━┯━━━━━━━━━━━━
|
2020-09-01 04:51:35 +02:00
|
|
|
lines │ words │ chars │ bytes
|
2019-11-10 10:11:23 +01:00
|
|
|
───────┼───────┼────────┼────────────
|
2020-03-13 18:23:41 +01:00
|
|
|
8935 │ 62352 │ 349459 │ 361771
|
2019-11-10 10:11:23 +01:00
|
|
|
━━━━━━━┷━━━━━━━┷━━━━━━━━┷━━━━━━━━━━━━
|
|
|
|
```
|