mirror of
https://github.com/nushell/nushell
synced 2024-12-26 13:03:07 +00:00
parent
59ab11e932
commit
50616cc62c
1 changed files with 48 additions and 0 deletions
48
docs/commands/count.md
Normal file
48
docs/commands/count.md
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
# count
|
||||||
|
|
||||||
|
This command counts the number of rows in a table.
|
||||||
|
|
||||||
|
## Examples -
|
||||||
|
|
||||||
|
```shell
|
||||||
|
> ls
|
||||||
|
━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━┯━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━
|
||||||
|
# │ name │ type │ readonly │ size │ created │ accessed │ modified
|
||||||
|
────┼──────────────────────────────┼───────────┼──────────┼─────────┼──────────────┼──────────────┼──────────────
|
||||||
|
0 │ Desktop │ Directory │ │ 4.1 KB │ 2 months ago │ 2 months ago │ 2 months ago
|
||||||
|
1 │ aur │ Directory │ │ 4.1 KB │ 4 hours ago │ 4 hours ago │ 4 hours ago
|
||||||
|
...
|
||||||
|
75 │ .emulator_console_auth_token │ File │ │ 16 B │ 2 months ago │ 2 months ago │ 2 months ago
|
||||||
|
76 │ bin │ Directory │ │ 4.1 KB │ 2 months ago │ 2 months ago │ 2 months ago
|
||||||
|
━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━┷━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━
|
||||||
|
> ls | count
|
||||||
|
━━━━━━━━━
|
||||||
|
<value>
|
||||||
|
─────────
|
||||||
|
77
|
||||||
|
━━━━━━━━━
|
||||||
|
> ls | get name | count
|
||||||
|
━━━━━━━━━
|
||||||
|
<value>
|
||||||
|
─────────
|
||||||
|
77
|
||||||
|
━━━━━━━━━
|
||||||
|
> ls | where type == File | count
|
||||||
|
━━━━━━━━━
|
||||||
|
<value>
|
||||||
|
─────────
|
||||||
|
29
|
||||||
|
━━━━━━━━━
|
||||||
|
> ls | where type == Directory | count
|
||||||
|
━━━━━━━━━
|
||||||
|
<value>
|
||||||
|
─────────
|
||||||
|
48
|
||||||
|
━━━━━━━━━
|
||||||
|
> ls | where size > 2KB | count
|
||||||
|
━━━━━━━━━
|
||||||
|
<value>
|
||||||
|
─────────
|
||||||
|
57
|
||||||
|
━━━━━━━━━
|
||||||
|
```
|
Loading…
Reference in a new issue