nushell/docs/commands/size.md

24 lines
1012 B
Markdown
Raw Normal View History

2019-11-10 10:11:23 +01:00
# size
This commands gives word count statistics on any text.
## Examples
2019-11-10 10:11:23 +01:00
```shell
> open lalala.txt | size
━━━━━━━┯━━━━━━━┯━━━━━━━┯━━━━━━━━━━━━
lines │ words │ chars │ max length
2019-11-10 10:11:23 +01:00
───────┼───────┼───────┼────────────
4 │ 10 │ 72 │ 72
2019-11-10 10:11:23 +01:00
━━━━━━━┷━━━━━━━┷━━━━━━━┷━━━━━━━━━━━━
```
```shell
2019-11-10 10:11:23 +01:00
> open the_mysterious_affair_at_styles.txt | size
━━━━━━━┯━━━━━━━┯━━━━━━━━┯━━━━━━━━━━━━
lines │ words │ chars │ max length
2019-11-10 10:11:23 +01:00
───────┼───────┼────────┼────────────
8935 │ 62352 │ 349459 │ 361771
2019-11-10 10:11:23 +01:00
━━━━━━━┷━━━━━━━┷━━━━━━━━┷━━━━━━━━━━━━
```