We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68ba222 commit c2e0cf4Copy full SHA for c2e0cf4
book/thinking_in_nu.md
@@ -15,7 +15,7 @@ Nushell is both a programming language and a shell. Because of this, it has its
15
For example, the following commandline works the same in both Bash and Nushell on Unix/Linux platforms:
16
17
```nu
18
-curl -s https://api.github.com/repos/nushell/nushell/contributors | jq '.[].login'
+curl -s https://api.github.com/repos/nushell/nushell/contributors | jq -c '.[] | {login,contributions}'
19
# => returns contributors to Nushell, ordered by number of contributions
20
```
21
0 commit comments