diff --git a/docs/commands/size.md b/docs/commands/size.md new file mode 100644 index 0000000000..02599dcce9 --- /dev/null +++ b/docs/commands/size.md @@ -0,0 +1,20 @@ +# size + +This commands gives word count statistics on any text. + +## Examples - + +```shell +> open lalala.txt | size +━━━━━━━┯━━━━━━━┯━━━━━━━┯━━━━━━━━━━━━ + lines │ words │ chars │ max length +───────┼───────┼───────┼──────────── + 4 │ 10 │ 72 │ 72 +━━━━━━━┷━━━━━━━┷━━━━━━━┷━━━━━━━━━━━━ +> open the_mysterious_affair_at_styles.txt | size +━━━━━━━┯━━━━━━━┯━━━━━━━━┯━━━━━━━━━━━━ + lines │ words │ chars │ max length +───────┼───────┼────────┼──────────── + 8935 │ 62352 │ 349459 │ 361771 +━━━━━━━┷━━━━━━━┷━━━━━━━━┷━━━━━━━━━━━━ +```